Update .gitlab-ci.yml file to use debian image
This commit is contained in:
@@ -13,6 +13,8 @@
|
||||
#
|
||||
# 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
|
||||
- build
|
||||
- test
|
||||
@@ -23,7 +25,8 @@ build-job: # This job runs in the build stage, which runs first.
|
||||
tags:
|
||||
- linux
|
||||
before_script:
|
||||
- apk --no-cache add cmake libgtk2.0-dev
|
||||
- apt update
|
||||
- apt install -y cmake libgtk2.0-dev
|
||||
script:
|
||||
- echo "Configuring"
|
||||
- cmake -B build .
|
||||
|
||||
Reference in New Issue
Block a user