PorygonLang/.drone.yml

25 lines
746 B
YAML

kind: pipeline
name: default
steps:
- name: test-debug-linux
image: dockcross/linux-x64
commands:
- cmake -DCMAKE_BUILD_TYPE=Debug . -B build-debug
- cmake --build build-debug --target all -- -j 4
- build-debug/PorygonLangTests -s
- name: test-release-linux
image: dockcross/linux-x64
commands:
- cmake -DCMAKE_BUILD_TYPE=Release . -B build-release
- cmake --build build-release --target all -- -j 4
- build-release/PorygonLangTests -s
- name: test-release-windows
image: dockcross/windows-static-x64
commands:
- cmake -DCMAKE_BUILD_TYPE=Release . -B build-release
- mingw32-make --build build-release --target all -- -j 4
- build-release/PorygonLangTests -s