unreviewed_code/.drone.yml

31 lines
667 B
YAML
Raw Normal View History

2024-09-08 14:20:42 +00:00
kind: pipeline
type: docker
name: default
steps:
- name: build
2024-09-08 14:24:46 +00:00
image: node:14-alpine
2024-09-08 14:20:42 +00:00
commands:
- echo "Building the application..."
2024-09-08 14:28:54 +00:00
- echo "Pipeline is running on runner ${DRONE_RUNNER_NAME}"
2024-09-08 14:20:42 +00:00
- name: test
2024-09-08 14:24:46 +00:00
image: python:3.9
2024-09-08 14:20:42 +00:00
depends_on:
- build
commands:
- echo "Running tests..."
2024-09-08 14:31:09 +00:00
- echo "Pipeline is running on runner ${DRONE_RUNNER_NAME}"
2024-09-08 14:20:42 +00:00
- name: deploy
2024-09-08 14:24:46 +00:00
image: ubuntu:20.04
2024-09-08 14:20:42 +00:00
depends_on:
- test
commands:
- echo "Deploying the application..."
2024-09-08 14:31:09 +00:00
- echo "Pipeline is running on runner ${DRONE_RUNNER_NAME}"
2024-09-08 14:26:50 +00:00
2024-09-08 14:34:59 +00:00
# node:
# system: linux
# task: unreviewed_code
# environment: node_js