diff options
author | Charadon <dev@iotib.net> | 2022-06-02 19:37:19 -0400 |
---|---|---|
committer | Charadon <dev@iotib.net> | 2022-06-02 19:37:19 -0400 |
commit | 4b873a2e20d388c99e6a5bce160310a2dcce78f4 (patch) | |
tree | 8ec252e583fa4bb41d4d2ee3747553310a20fcb0 /.gitlab-ci.yml | |
parent | d1d13216310c7ebb23f99459e21905393d02b839 (diff) | |
download | Pong-C-4b873a2e20d388c99e6a5bce160310a2dcce78f4.tar.gz |
Finally fix ci
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7cc4fa0..00af7eb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,21 +15,11 @@ stages: # List of stages for jobs, and their order of execution - build - - deploy build-job: # This job runs in the build stage, which runs first. stage: build script: - - apk add flatpak - - apk add flatpak-builder - - flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo - - flatpak install -y org.freedesktop.Sdk/x86_64/21.08 - - flatpak install -y org.freedesktop.Platform/x86_64/21.08 - - flatpak-builder --user --force-clean --repo=/tmp/flatpak-export flatpak net.iotib.Pong.yml - - flatpak build-bundle /tmp/flatpak-export net.iotib.Pong.flatpak net.iotib.Pong 0.1 - -deploy-job: # This job runs in the deploy stage. - stage: deploy # It only runs when *both* jobs in the test stage complete successfully. - script: - - echo "Deploying application..." - - echo "Application successfully deployed." + - apk add meson + - meson build + - cd build + - ninja |