Files
mash/.woodpecker/workflow.yaml
haxala1r ea9c6a0144
All checks were successful
ci/woodpecker/push/workflow Pipeline was successful
Fixed workflow to use the correct path for the resulting binary
2025-09-30 20:21:49 +03:00

18 lines
456 B
YAML

when:
- event: push
- event: tag
steps:
- name: build
image: gcc:latest
commands: # we probably shouldn't install cmake every time
- apt update && apt install -y cmake
- mkdir -p build/ && cd build
- cmake ..
- make
- name: test
image: ubuntu
commands:
# TODO: Probably make actual tests at some point
- echo "(print 42)" | ./build/main
# TODO: add publish step, when we're at a working state.