Commit 74f975ac by Alexander Popov

Create multiple pipelines for Woodpecker-CI at Codeberg

parent 51cdffd5
# .woodpecker.yml
pipeline:
build:
image: debian
commands:
- echo "This is the build step"
- ls -la
a-test-step:
image: debian
commands:
- echo "Testing.."
- ls -la
- cat ./bin/kconfig-hardened-check
# .woodpecker.yml
pipeline:
hello-step:
image: python:3
commands:
- echo "Hello, this is the engine unit-test"
build:
image: python:3
commands:
- echo "Building..."
- python --version
a-test-step:
image: python:3
commands:
- echo "Testing..."
- ./bin/kconfig-hardened-check
# .woodpecker.yml
pipeline:
hello-step:
image: python:3
commands:
- echo "Hello, this is the functional test"
build:
image: python:3
commands:
- echo "Building..."
- python --version
a-test-step:
image: python:3
commands:
- echo "Testing..."
- ./bin/kconfig-hardened-check
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment