diff options
author | Freeyorp <TheFreeYorp+git@gmail.com> | 2024-06-05 18:44:25 +0000 |
---|---|---|
committer | Freeyorp <TheFreeYorp+git@gmail.com> | 2024-06-05 19:09:16 +0000 |
commit | 185cd48b947c863b9eba9c7134cb205f315a6285 (patch) | |
tree | 9d6a3c03b558c2bb22efeef890509ba8dcfabf03 | |
parent | 1beb173f7e876fff48cc09adcc9be2481867abb0 (diff) | |
download | tmwa-185cd48b947c863b9eba9c7134cb205f315a6285.tar.gz tmwa-185cd48b947c863b9eba9c7134cb205f315a6285.tar.bz2 tmwa-185cd48b947c863b9eba9c7134cb205f315a6285.tar.xz tmwa-185cd48b947c863b9eba9c7134cb205f315a6285.zip |
Fix CI
-rw-r--r-- | .gitlab-ci.yml | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f7c750a..65b8961 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,7 +23,7 @@ re:ubuntu1804:build: image: ubuntu:18.04 variables: <<: *base_vars - INSTALL_PACKAGES: python + INSTALL_PACKAGES: python3 script: - echo "Building TMW Athena $CI_BUILD_NAME" - git submodule update --init @@ -47,9 +47,8 @@ re:ubuntu2204:build: image: ubuntu:22.04 variables: <<: *base_vars - INSTALL_PACKAGES: python2 + INSTALL_PACKAGES: python3 script: - - ln -s /usr/bin/python2 /usr/bin/python - git submodule update --init - git fetch -t - printf "Building TMW Athena version %s\n" "$(git describe --tags HEAD)" @@ -73,7 +72,7 @@ re:ubuntu2204:build: image: ubuntu:18.04 variables: <<: *base_vars - INSTALL_PACKAGES: python gdb + INSTALL_PACKAGES: python3 gdb script: - printf "Testing TMW Athena version %s\n" "$(git describe --tags HEAD)" - make test @@ -84,8 +83,7 @@ re:ubuntu2204:test: image: ubuntu:22.04 variables: <<: *base_vars - INSTALL_PACKAGES: python2 gdb + INSTALL_PACKAGES: python3 gdb script: - - ln -s /usr/bin/python2 /usr/bin/python - printf "Testing TMW Athena version %s\n" "$(git describe --tags HEAD)" - make test |