+++ /dev/null
-# .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
--- /dev/null
+# .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
--- /dev/null
+# .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