ci: tests: Add test-linux and test-windows.

mesh
Pierre-Antoine Rouby 2023-09-19 17:05:15 +02:00
parent 2cad6f21ab
commit 5f6154c510
1 changed files with 18 additions and 2 deletions

View File

@ -208,15 +208,31 @@ build-windows:
# TESTS #
#########
test:
test-windows:
stage: test
tags:
- wine
needs:
- job: set-version
artifacts: true
- job: build-windows
artifacts: true
script:
- cd windows\pamhyr
- pamhyr\pamhyr.exe hello
test-linux:
stage: test
tags:
- linux
needs:
- job: set-version
artifacts: true
- job: build-linux
artifacts: true
script:
- echo "TODO PAMHYR tests"
- cd linux/pamhyr
- ./Pamhyr2 hello
############
# PACKAGES #