Skip to content

Commit daed295

Browse files
authored
update un/download artefacts action to v4 (#174)
* update un/download artefacts action to v4 * fix pari tarfile naming * use pattern: instead of name: for artifact-download * correct artifact name * fix path to the downloaded artifact * use latest pari, hopefully correct artifact name * correct URL for latest pari
1 parent 190dab4 commit daed295

File tree

3 files changed

+17
-15
lines changed

3 files changed

+17
-15
lines changed

.github/workflows/dist.yml

+12-11
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,17 @@ jobs:
2323
run: |
2424
bash -x .install-pari.sh
2525
env:
26-
PARI_VERSION: pari-2.15.4
26+
PARI_VERSION: pari-2.17.1
27+
URLDIR: unix
2728
- uses: actions/setup-python@v4
2829
- name: make sdist
2930
run: |
3031
python3 -m pip install build
3132
python3 -m build --sdist
32-
- uses: actions/upload-artifact@v3
33+
- uses: actions/upload-artifact@v4
3334
with:
3435
path: "dist/*.tar.gz"
35-
name: dist
36+
name: dist-ubuntu-latest
3637
- uses: pypa/gh-action-pypi-publish@release/v1
3738
with:
3839
user: __token__
@@ -68,7 +69,7 @@ jobs:
6869
#
6970
CIBW_ARCHS: ${{ matrix.arch }}
7071
# https://cibuildwheel.readthedocs.io/en/stable/options/#requires-python
71-
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.9"
72+
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.10"
7273
# Environment during wheel build
7374
CIBW_ENVIRONMENT: "PATH=$(pwd)/local/bin:$PATH CPATH=$(pwd)/local/include:$CPATH LIBRARY_PATH=$(pwd)/local/lib:$LIBRARY_PATH LD_LIBRARY_PATH=$(pwd)/local/lib:$LD_LIBRARY_PATH PKG_CONFIG_PATH=$(pwd)/local/share/pkgconfig:$PKG_CONFIG_PATH ACLOCAL_PATH=/usr/share/aclocal"
7475
# Use 'build', not 'pip wheel'
@@ -79,17 +80,17 @@ jobs:
7980
repository: sagemath/sage
8081
ref: develop
8182

82-
- uses: actions/download-artifact@v4.1.7
83+
- uses: actions/download-artifact@v4
8384
with:
84-
name: dist
85+
pattern: dist-*
8586
path: dist
8687

8788
- uses: actions/setup-python@v5
8889
# As of 2024-02-03, the macOS M1 runners do not have preinstalled python or pipx.
8990
# Installing pipx follows the approach of https://github.com/pypa/cibuildwheel/pull/1743
9091
id: python
9192
with:
92-
python-version: "3.8 - 3.12"
93+
python-version: "3.10 - 3.12"
9394
update-environment: false
9495

9596
- name: Build platform wheels
@@ -105,13 +106,13 @@ jobs:
105106
export CIBW_BEFORE_ALL="( $(sage-print-system-package-command debian --yes --no-install-recommends install $(sage-get-system-packages debian $SPKGS)) || $(sage-print-system-package-command fedora --yes --no-install-recommends install $(sage-get-system-packages fedora $SPKGS | sed s/pkg-config/pkgconfig/)) || ( $(sage-print-system-package-command homebrew --yes --no-install-recommends install $(sage-get-system-packages homebrew $SPKGS)) || echo error ignored) ) && ./bootstrap && ./configure --enable-build-as-root && make -j4 V=0 $TARGETS_PRE"
106107
mkdir -p unpacked
107108
for pkg in cypari2; do
108-
(cd unpacked && tar xfz - ) < dist/$pkg*.tar.gz
109+
(cd unpacked && tar xfz - ) < dist/dist-ubuntu-latest/$pkg*.tar.gz
109110
"${{ steps.python.outputs.python-path }}" -m pipx run cibuildwheel==2.17.0 unpacked/$pkg*
110111
done
111112
112-
- uses: actions/upload-artifact@v3
113+
- uses: actions/upload-artifact@v4
113114
with:
114-
name: wheels
115+
name: wheels-${{ matrix.os }}
115116
path: ./wheelhouse/*.whl
116117

117118
pypi-publish:
@@ -124,7 +125,7 @@ jobs:
124125
CAN_DEPLOY: ${{ secrets.SAGEMATH_PYPI_API_TOKEN != '' }}
125126
steps:
126127

127-
- uses: actions/download-artifact@v4.1.7
128+
- uses: actions/download-artifact@v4
128129
with:
129130
name: wheels
130131
path: wheelhouse

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
&& echo "sage-package create ${{ env.SPKG }} --version git --tarball ${{ env.SPKG }}-git.tar.gz --type=standard" > upstream/update-pkgs.sh \
6565
&& if [ -n "${{ env.REMOVE_PATCHES }}" ]; then echo "(cd ../build/pkgs/${{ env.SPKG }}/patches && rm -f ${{ env.REMOVE_PATCHES }}; :)" >> upstream/update-pkgs.sh; fi \
6666
&& ls -l upstream/
67-
- uses: actions/upload-artifact@v3
67+
- uses: actions/upload-artifact@v4
6868
with:
6969
path: upstream
7070
name: upstream

.install-pari.sh

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ PARI_URL1="http://pari.math.u-bordeaux.fr/pub/pari/unix"
1313
PARI_URL2="http://pari.math.u-bordeaux.fr/pub/pari/unstable"
1414

1515
# Download PARI sources
16-
wget --no-verbose "$PARI_URL/$PARI_VERSION.tar.gz" || wget --no-verbose "$PARI_URL1/$PARI_VERSION.tar.gz" || wget --no-verbose "$PARI_URL2/$PARI_VERSION.tar.gz" || wget --no-verbose "$PARI_URL3/$PARI_VERSION.tar.gz"
16+
wget --no-verbose "$PARI_URL/$PARI_VERSION.tar.gz" -O pari.tgz || wget --no-verbose "$PARI_URL1/pari-$PARI_VERSION.tar.gz" -O pari.tgz || wget --no-verbose "$PARI_URL2/pari-$PARI_VERSION.tar.gz" -O pari.tgz
1717

1818
# Install
19-
tar xzf "$PARI_VERSION.tar.gz"
20-
cd "$PARI_VERSION"
19+
mkdir Pari42
20+
tar xzf pari.tgz -C Pari42
21+
cd Pari42/*
2122
./Configure --prefix=/usr
2223
make gp
2324
sudo make install

0 commit comments

Comments
 (0)