Update .gitlab-ci.yml file to use debian image

This commit is contained in:
James H
2022-01-03 14:17:24 +00:00
parent 9b7daea177
commit cacd94da62

View File

@@ -13,6 +13,8 @@
# #
# For more information, see: https://docs.gitlab.com/ee/ci/yaml/index.html#stages # For more information, see: https://docs.gitlab.com/ee/ci/yaml/index.html#stages
image: debian:stable
stages: # List of stages for jobs, and their order of execution stages: # List of stages for jobs, and their order of execution
- build - build
- test - test
@@ -23,7 +25,8 @@ build-job: # This job runs in the build stage, which runs first.
tags: tags:
- linux - linux
before_script: before_script:
- apk --no-cache add cmake libgtk2.0-dev - apt update
- apt install -y cmake libgtk2.0-dev
script: script:
- echo "Configuring" - echo "Configuring"
- cmake -B build . - cmake -B build .