summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFedja Beader <fedja@protonmail.ch>2024-02-07 19:43:56 +0100
committerFedja Beader <fedja@protonmail.ch>2024-02-07 19:43:56 +0100
commit5cc9aca2d9dff0fb551dc6d77377691c04055918 (patch)
tree31c866e56a52254b6db6abec57d68770b838c385
parentfdc01e1f304fd6e0bf64da12dee0f144a637d713 (diff)
downloadtmwa-5cc9aca2d9dff0fb551dc6d77377691c04055918.tar.gz
tmwa-5cc9aca2d9dff0fb551dc6d77377691c04055918.tar.bz2
tmwa-5cc9aca2d9dff0fb551dc6d77377691c04055918.tar.xz
tmwa-5cc9aca2d9dff0fb551dc6d77377691c04055918.zip
Try python3.7 instead of default py3.6
-rw-r--r--.gitlab-ci.yml28
1 files changed, 4 insertions, 24 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index dd2312f..fdfbf15 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,10 +1,10 @@
# Copied in from Moubootaur Legends's Hercules .gitlab-ci.yml
stages:
- build
-# - test
+ - test
variables: &base_vars
- DEBIAN_COMMON_PACKAGES: make python3 git gcc g++
+ DEBIAN_COMMON_PACKAGES: make python3.7 git gcc g++
GIT_DEPTH: 100 # Will break again eventually.
.prerequisites: &prerequisites
@@ -37,27 +37,7 @@ variables: &base_vars
untracked: true
expire_in: 30 mins
-re:ubuntu1804REPL:build:
- <<: *prerequisites
- stage: build
- image: ubuntu:18.04
- variables:
- <<: *base_vars
- script:
- - echo "Building TMW Athena $CI_BUILD_NAME"
- - git submodule update --init
- - git fetch -t
- - printf "Building TMW Athena version %s\n" "$(git describe --tags HEAD)"
- - ./configure --user
-# - make
-# - make install
-# artifacts: # required for test stage
-# untracked: true
-# expire_in: 30 mins
-
-
-
-.re:ubuntu1804:build:
+re:ubuntu1804:build:
<<: *prerequisites
stage: build
image: ubuntu:18.04
@@ -88,7 +68,7 @@ re:ubuntu1804REPL:build:
- make test
-.re:ubuntu1804:test:
+re:ubuntu1804:test:
<<: *prerequisites
stage: test
image: ubuntu:18.04