From d8d54859ed138a8ed9a8486d847155211c9f4a7d Mon Sep 17 00:00:00 2001 From: Tim Ruffing Date: Thu, 3 Feb 2022 12:58:55 +0100 Subject: [PATCH] ci: Run sage prover on CI --- .cirrus.yml | 7 +++++++ ci/linux-debian.Dockerfile | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index ffbd82071..727a73f37 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -322,3 +322,10 @@ task: test_script: - ./ci/cirrus.sh << : *CAT_LOGS + +task: + name: "sage prover" + << : *LINUX_CONTAINER + test_script: + - cd sage + - sage prove_group_implementations.sage diff --git a/ci/linux-debian.Dockerfile b/ci/linux-debian.Dockerfile index fdba12aa0..5cccbb556 100644 --- a/ci/linux-debian.Dockerfile +++ b/ci/linux-debian.Dockerfile @@ -19,7 +19,8 @@ RUN apt-get install --no-install-recommends --no-upgrade -y \ gcc-arm-linux-gnueabihf libc6-dev-armhf-cross libc6-dbg:armhf \ gcc-aarch64-linux-gnu libc6-dev-arm64-cross libc6-dbg:arm64 \ gcc-powerpc64le-linux-gnu libc6-dev-ppc64el-cross libc6-dbg:ppc64el \ - wine gcc-mingw-w64-x86-64 + wine gcc-mingw-w64-x86-64 \ + sagemath # Run a dummy command in wine to make it set up configuration RUN wine64-stable xcopy || true