From 5f6154c510f1db3db4e9aaae49a718c4b85c325f Mon Sep 17 00:00:00 2001 From: Pierre-Antoine Rouby Date: Tue, 19 Sep 2023 17:05:15 +0200 Subject: [PATCH] ci: tests: Add test-linux and test-windows. --- .gitlab-ci.yml | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1bafb959..a576c68a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 #