2024-12-25 19:19:28 +01:00
|
|
|
when:
|
|
|
|
- event: push
|
2024-12-25 19:22:39 +01:00
|
|
|
branch: master
|
2024-12-25 19:19:28 +01:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: debian
|
|
|
|
commands:
|
2024-12-25 19:36:52 +01:00
|
|
|
- sudo apt install libcmocka-dev
|
|
|
|
- echo "echo hello" > executable.sh
|
|
|
|
- chmod +x executable.sh
|
2024-12-25 19:19:28 +01:00
|
|
|
- name: a-test-step
|
|
|
|
image: golang:1.16
|
|
|
|
commands:
|
|
|
|
- echo "Testing ..."
|
2024-12-25 19:36:52 +01:00
|
|
|
- ./executable.sh
|