aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2021-04-04 12:06:54 -0600
committerMelody Horn <melody@boringcactus.com>2021-04-04 12:06:54 -0600
commitea081ad6aac58fc52a16712c9463ddc3d86db6b5 (patch)
treed03528b8d6197bef68778439e6af8119af4a5550 /.gitlab-ci.yml
parent68db8d315e3ef67c608cb2eddca16fd5e5fddccb (diff)
downloadmakers-ea081ad6aac58fc52a16712c9463ddc3d86db6b5.tar.gz
makers-ea081ad6aac58fc52a16712c9463ddc3d86db6b5.zip
add a CPython full-test
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9423e02..62efa0c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -36,3 +36,15 @@ full-test-uutils:
- makers build
- makers test || echo "test failed but that's not the point"
- makers busytest || echo "busytest failed but that's not the point"
+
+full-test-cpython:
+ stage: full-test
+ script:
+ - cargo install --path .
+ - mkdir ~/cpython
+ - cd ~/cpython
+ - wget https://www.python.org/ftp/python/3.9.3/Python-3.9.3.tar.xz
+ - tar xf Python-*.tar.gz
+ - cd Python-*/
+ - ./configure
+ - makers