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
|
# 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 .
|
||||||
|
|||||||
Reference in New Issue
Block a user