File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed
Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Build Debian packages
2+ on : push
3+
4+ jobs :
5+ build-deb :
6+ runs-on : ubuntu-latest
7+ strategy :
8+ fail-fast : false
9+ matrix :
10+ release :
11+ - bullseye
12+ - bookworm
13+ - trixie
14+ container :
15+ image : debian/${{ matrix.release }}
16+ steps :
17+ - name : Install dependencies
18+ run : sudo apt install 4ti2 autoconf automake bison ca-certificates cohomcalg coinor-csdp fflas-ffpack flex g++ gfan gfortran git install-info libboost-dev libboost-regex-dev libboost-stacktrace-dev libcdd-dev libeigen3-dev libffi-dev libflint-dev libfplll-dev libfrobby-dev libgc-dev libgdbm-dev libgivaro-dev libglpk-dev libgmp-dev libgtest-dev liblzma-dev libmathic-dev libmathicgb-dev libmemtailor-dev libmpfi-dev libmpfr-dev libmps-dev libnauty-dev libncurses-dev libnormaliz-dev libntl-dev libopenblas-dev libpython3-dev libreadline-dev libsingular-dev libtbb-dev libtool-bin libxml2-dev lrslib make msolve nauty normaliz patch pkgconf python3 singular-data time topcom wget zlib1g-dev devscripts build-essential
19+ - name : Clone repository
20+ run : |
21+ git clone https://salsa.debian.org/math-team/macaulay2
22+ cd macaulay2
23+ git checkout debian/${{ matrix.release }}
24+ - name : Fetch tarball
25+ run : |
26+ cd macaulay2
27+ uscan --rename --force-download --verbose
28+ - name : Build package
29+ run : |
30+ cd macaulay2
31+ dpkg-buildpackage
32+ - name : Upload artifacts
33+ uses : actions/upload-artifact@v5
34+ with :
35+ name : ${{ matrix.release }}
36+ path : |
37+ macaulay2*.buildinfo
38+ macaulay2*.changes
39+ *macaulay2*.deb
You can’t perform that action at this time.
0 commit comments