Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 178d111

Browse files
author
Matthias Koeppe
committed
Merge #33033
2 parents f5addb3 + 3939af7 commit 178d111

File tree

604 files changed

+13054
-8916
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

604 files changed

+13054
-8916
lines changed

.github/workflows/extract-sage-local.sh

+20-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ fi
88
# Show all tar files
99
ls -l $*
1010

11-
# We specifically use the cygwin tar so that symlinks are saved/restored correctly on Windows.
11+
# Cygwin note: We specifically use the cygwin tar so that symlinks are saved/restored correctly on Windows.
1212
for a in $*; do
1313
echo Extracting $a
1414
(cd / && tar xf -) < $a
@@ -17,11 +17,26 @@ done
1717

1818
# We set the installation records to the same mtime so that no rebuilds due to dependencies
1919
# among these packages are triggered.
20-
(cd "$SAGE_LOCAL"/var/lib/sage/installed/ && touch .dummy && touch --reference=.dummy *)
20+
dummy="$SAGE_LOCAL"/var/lib/sage/installed/.dummy
21+
if [ -f "$dummy" ]; then
22+
touch "$dummy"
23+
for tree in "$SAGE_LOCAL" "$SAGE_LOCAL"/var/lib/sage/venv*; do
24+
inst="$tree"/var/lib/sage/installed
25+
if [ -d "$inst" ]; then
26+
# -r is --reference; the macOS version of touch does not accept the long option.
27+
(cd "$inst" && touch -r "$dummy" .dummy *)
28+
# Show what has been built already.
29+
ls -l "$tree" "$inst"
30+
fi
31+
done
32+
fi
2133

22-
# Show what has been built already.
23-
ls -l "$SAGE_LOCAL" "$SAGE_LOCAL"/var/lib/sage/installed/
34+
# Show how we are doing on free space.
2435
df -h
2536

2637
# Rebase!
27-
exec src/bin/sage-rebase.sh --all "$SAGE_LOCAL"
38+
case "$(uname)" in
39+
CYGWIN*)
40+
exec src/bin/sage-rebase.sh --all "$SAGE_LOCAL"
41+
;;
42+
esac

.github/workflows/sdist.yml

+26
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,29 @@ jobs:
4343
with:
4444
path: "dist/*.tar.gz"
4545
name: release_dist
46+
47+
sdists_for_pypi:
48+
49+
runs-on: ubuntu-latest
50+
env:
51+
CAN_DEPLOY: ${{ secrets.SAGEMATH_PYPI_API_TOKEN != '' }}
52+
steps:
53+
- uses: actions/checkout@v2
54+
- name: Install bootstrap prerequisites
55+
run: |
56+
sudo DEBIAN_FRONTEND=noninteractive apt-get update
57+
sudo DEBIAN_FRONTEND=noninteractive apt-get install $(build/bin/sage-get-system-packages debian _bootstrap)
58+
- name: make pypi-sdists
59+
run: |
60+
./bootstrap
61+
./configure
62+
make pypi-sdists V=0
63+
(mkdir dist && mv upstream/sage*.tar.gz dist/)
64+
ls -l dist
65+
- uses: pypa/gh-action-pypi-publish@release/v1
66+
with:
67+
user: __token__
68+
password: ${{ secrets.SAGEMATH_PYPI_API_TOKEN }}
69+
skip_existing: true
70+
verbose: true
71+
if: env.CAN_DEPLOY == 'true'

.github/workflows/tox-experimental.yml

+1-78
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
# This list is different from the one in tox.yml:
4242
# Trac #31526 switches gcc 4.x-based distributions to using the gcc_spkg configuration factor
4343
# Trac #32281 removes gcc 4.x-based distributions whose binutils are unusable
44-
tox_system_factor: [ubuntu-xenial, ubuntu-bionic, ubuntu-focal, ubuntu-groovy, ubuntu-hirsute, debian-jessie-gcc_spkg, debian-stretch, debian-buster, debian-bullseye, debian-sid, linuxmint-18, linuxmint-19, linuxmint-19.3, linuxmint-20.1, fedora-26, fedora-27, fedora-28, fedora-29, fedora-30, fedora-31, fedora-32, fedora-33, fedora-34, centos-7-gcc_spkg, centos-8, gentoo-python3.9, gentoo-python3.10, archlinux-latest, opensuse-15, opensuse-15.3, opensuse-tumbleweed, slackware-14.2, conda-forge, ubuntu-bionic-i386, manylinux-2_24-i686, debian-buster-i386, centos-7-i386-gcc_spkg]
44+
tox_system_factor: [ubuntu-xenial, ubuntu-bionic, ubuntu-focal, ubuntu-hirsute, ubuntu-impish, ubuntu-jammy, debian-stretch, debian-buster, debian-bullseye, debian-bookworm, debian-sid, linuxmint-18, linuxmint-19, linuxmint-19.3, linuxmint-20.1, linuxmint-20.2. linuxmint-20.3, fedora-26, fedora-27, fedora-28, fedora-29, fedora-30, fedora-31, fedora-32, fedora-33, fedora-34, fedora-35, fedora-36, centos-7-gcc_spkg, centos-8, gentoo-python3.9, gentoo-python3.10, archlinux-latest, opensuse-15, opensuse-15.3, opensuse-tumbleweed, slackware-14.2, conda-forge, ubuntu-bionic-i386, manylinux-2_24-i686, debian-buster-i386, centos-7-i386-gcc_spkg]
4545
tox_packages_factor: [maximal]
4646
targets_pattern: [0-g, h-o, p, q-z]
4747
env:
@@ -109,80 +109,3 @@ jobs:
109109
cat .tox/$TOX_ENV/Dockertags
110110
fi
111111
if: always()
112-
113-
local-macos:
114-
115-
runs-on: ${{ matrix.os }}
116-
strategy:
117-
fail-fast: false
118-
max-parallel: 3
119-
matrix:
120-
tox_system_factor: [homebrew-macos, conda-forge-macos, homebrew-macos-python3_xcode]
121-
tox_packages_factor: [maximal]
122-
# As of 2021-03, default xcode is 12.4
123-
# https://github.com/actions/virtual-environments/blob/main/images/macos/macos-10.15-Readme.md#xcode
124-
xcode_version_factor: [default]
125-
targets_pattern: [0-g, h-o, p, q-z]
126-
os: [ macos-10.15, macos-11.0 ]
127-
include:
128-
# Test xcode 11.7 only on macos-10.15
129-
- tox_system_factor: homebrew-macos
130-
tox_packages_factor: maximal
131-
xcode_version_factor: 11.7
132-
targets_pattern: 0-g
133-
os: macos-10.15
134-
- tox_system_factor: homebrew-macos
135-
tox_packages_factor: maximal
136-
xcode_version_factor: 11.7
137-
targets_pattern: h-o
138-
os: macos-10.15
139-
- tox_system_factor: homebrew-macos
140-
tox_packages_factor: maximal
141-
xcode_version_factor: 11.7
142-
targets_pattern: p
143-
os: macos-10.15
144-
- tox_system_factor: homebrew-macos
145-
tox_packages_factor: maximal
146-
xcode_version_factor: 11.7
147-
targets_pattern: q-z
148-
os: macos-10.15
149-
env:
150-
TOX_ENV: local-${{ matrix.tox_system_factor }}-${{ matrix.tox_packages_factor }}
151-
LOGS_ARTIFACT_NAME: logs-commit-${{ github.sha }}-tox-local-${{ matrix.tox_system_factor }}-${{ matrix.tox_packages_factor }}-${{ matrix.os }}-xcode_${{ matrix.xcode_version_factor }}
152-
# Test all non-dummy experimental packages, but do not test huge packages
153-
# and do not test packages that require external software
154-
TARGETS_OPTIONAL: "$( echo $(export PATH=build/bin:$PATH && sage-package list :experimental: --has-file spkg-install.in && sage-package list :experimental: --has-file spkg-install && sage-package list :experimental: --has-file requirements.txt | grep -v ^_ | grep -v database_stein_watkins\\$ | grep -v polytopes_db_4d | grep -v cplex | grep -v gurobi | grep '^[${{ matrix.targets_pattern }}]' ) )"
155-
steps:
156-
- uses: actions/checkout@v2
157-
- name: Select Xcode version
158-
run: |
159-
if [ ${{ matrix.xcode_version_factor }} != default ]; then sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode_version_factor }}.app; fi
160-
- name: Install test prerequisites
161-
run: |
162-
brew install tox
163-
- name: Install python3 from python.org
164-
# As of 2020-03-30 (https://github.com/actions/virtual-environments/blob/master/images/macos/macos-10.15-Readme.md),
165-
# Python 3.7.7 is installed on GitHub Actions runners. But we install our own copy from the python.org binary package.
166-
run: |
167-
curl -o python3.pkg https://www.python.org/ftp/python/3.7.7/python-3.7.7-macosx10.9.pkg
168-
sudo installer -verbose -pkg python3.pkg -target /
169-
if: contains(matrix.tox_system_factor, 'python3_pythonorg')
170-
- name: Build and test with tox
171-
# We use a high parallelization on purpose in order to catch possible parallelization bugs in the build scripts.
172-
# For doctesting, we use a lower parallelization to avoid timeouts.
173-
run: |
174-
MAKE="make -j12" tox -e $TOX_ENV -- SAGE_NUM_THREADS=4 $TARGETS
175-
- name: Prepare logs artifact
176-
run: |
177-
mkdir -p "artifacts/$LOGS_ARTIFACT_NAME"; cp -r .tox/*/log "artifacts/$LOGS_ARTIFACT_NAME"
178-
if: always()
179-
- uses: actions/upload-artifact@v1
180-
with:
181-
path: artifacts
182-
name: ${{ env.LOGS_ARTIFACT_NAME }}
183-
if: always()
184-
- name: Print out logs for immediate inspection
185-
# and markup the output with GitHub Actions logging commands
186-
run: |
187-
.github/workflows/scan-logs.sh "artifacts/$LOGS_ARTIFACT_NAME"
188-
if: always()

.github/workflows/tox-gcc_spkg.yml

-142
This file was deleted.

.github/workflows/tox-optional.yml

+1-78
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
# This list is different from the one in tox.yml:
4242
# Trac #31526 switches gcc 4.x-based distributions to using the gcc_spkg configuration factor
4343
# Trac #32281 removes gcc 4.x-based distributions whose binutils are unusable
44-
tox_system_factor: [ubuntu-xenial, ubuntu-bionic, ubuntu-focal, ubuntu-groovy, ubuntu-hirsute, debian-jessie-gcc_spkg, debian-stretch, debian-buster, debian-bullseye, debian-sid, linuxmint-18, linuxmint-19, linuxmint-19.3, linuxmint-20.1, fedora-26, fedora-27, fedora-28, fedora-29, fedora-30, fedora-31, fedora-32, fedora-33, fedora-34, centos-7-gcc_spkg, centos-8, gentoo-python3.9, gentoo-python3.10, archlinux-latest, opensuse-15, opensuse-15.3, opensuse-tumbleweed, slackware-14.2, conda-forge, ubuntu-bionic-i386, manylinux-2_24-i686, debian-buster-i386, centos-7-i386-gcc_spkg]
44+
tox_system_factor: [ubuntu-xenial, ubuntu-bionic, ubuntu-focal, ubuntu-hirsute, ubuntu-impish, ubuntu-jammy, debian-stretch, debian-buster, debian-bullseye, debian-bookworm, debian-sid, linuxmint-18, linuxmint-19, linuxmint-19.3, linuxmint-20.1, linuxmint-20.2. linuxmint-20.3, fedora-26, fedora-27, fedora-28, fedora-29, fedora-30, fedora-31, fedora-32, fedora-33, fedora-34, fedora-35, fedora-36, centos-7-gcc_spkg, centos-8, gentoo-python3.9, gentoo-python3.10, archlinux-latest, opensuse-15, opensuse-15.3, opensuse-tumbleweed, slackware-14.2, conda-forge, ubuntu-bionic-i386, manylinux-2_24-i686, debian-buster-i386, centos-7-i386-gcc_spkg]
4545
tox_packages_factor: [maximal]
4646
targets_pattern: [0-g, h-o, p, q-z]
4747
env:
@@ -109,80 +109,3 @@ jobs:
109109
cat .tox/$TOX_ENV/Dockertags
110110
fi
111111
if: always()
112-
113-
local-macos:
114-
115-
runs-on: ${{ matrix.os }}
116-
strategy:
117-
fail-fast: false
118-
max-parallel: 3
119-
matrix:
120-
tox_system_factor: [homebrew-macos, conda-forge-macos, homebrew-macos-python3_xcode]
121-
tox_packages_factor: [maximal]
122-
# As of 2021-03, default xcode is 12.4
123-
# https://github.com/actions/virtual-environments/blob/main/images/macos/macos-10.15-Readme.md#xcode
124-
xcode_version_factor: [default]
125-
targets_pattern: [0-g, h-o, p, q-z]
126-
os: [ macos-10.15, macos-11.0 ]
127-
include:
128-
# Test xcode 11.7 only on macos-10.15
129-
- tox_system_factor: homebrew-macos
130-
tox_packages_factor: maximal
131-
xcode_version_factor: 11.7
132-
targets_pattern: 0-g
133-
os: macos-10.15
134-
- tox_system_factor: homebrew-macos
135-
tox_packages_factor: maximal
136-
xcode_version_factor: 11.7
137-
targets_pattern: h-o
138-
os: macos-10.15
139-
- tox_system_factor: homebrew-macos
140-
tox_packages_factor: maximal
141-
xcode_version_factor: 11.7
142-
targets_pattern: p
143-
os: macos-10.15
144-
- tox_system_factor: homebrew-macos
145-
tox_packages_factor: maximal
146-
xcode_version_factor: 11.7
147-
targets_pattern: q-z
148-
os: macos-10.15
149-
env:
150-
TOX_ENV: local-${{ matrix.tox_system_factor }}-${{ matrix.tox_packages_factor }}
151-
LOGS_ARTIFACT_NAME: logs-commit-${{ github.sha }}-tox-local-${{ matrix.tox_system_factor }}-${{ matrix.tox_packages_factor }}-${{ matrix.os }}-xcode_${{ matrix.xcode_version_factor }}
152-
# Test all non-dummy optional packages, but do not test huge packages
153-
# and do not test packages that require external software
154-
TARGETS_OPTIONAL: "$( echo $(export PATH=build/bin:$PATH && (sage-package list :optional: --has-file spkg-install.in && sage-package list :optional: --has-file spkg-install && sage-package list :optional: --has-file requirements.txt) | grep -v ^_ | grep -v database_stein_watkins\\$ | grep -v polytopes_db_4d | grep -v cplex | grep -v gurobi | grep '^[${{ matrix.targets_pattern }}]' ) )"
155-
steps:
156-
- uses: actions/checkout@v2
157-
- name: Select Xcode version
158-
run: |
159-
if [ ${{ matrix.xcode_version_factor }} != default ]; then sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode_version_factor }}.app; fi
160-
- name: Install test prerequisites
161-
run: |
162-
brew install tox
163-
- name: Install python3 from python.org
164-
# As of 2020-03-30 (https://github.com/actions/virtual-environments/blob/master/images/macos/macos-10.15-Readme.md),
165-
# Python 3.7.7 is installed on GitHub Actions runners. But we install our own copy from the python.org binary package.
166-
run: |
167-
curl -o python3.pkg https://www.python.org/ftp/python/3.7.7/python-3.7.7-macosx10.9.pkg
168-
sudo installer -verbose -pkg python3.pkg -target /
169-
if: contains(matrix.tox_system_factor, 'python3_pythonorg')
170-
- name: Build and test with tox
171-
# We use a high parallelization on purpose in order to catch possible parallelization bugs in the build scripts.
172-
# For doctesting, we use a lower parallelization to avoid timeouts.
173-
run: |
174-
MAKE="make -j12" tox -e $TOX_ENV -- SAGE_NUM_THREADS=4 $TARGETS
175-
- name: Prepare logs artifact
176-
run: |
177-
mkdir -p "artifacts/$LOGS_ARTIFACT_NAME"; cp -r .tox/*/log "artifacts/$LOGS_ARTIFACT_NAME"
178-
if: always()
179-
- uses: actions/upload-artifact@v1
180-
with:
181-
path: artifacts
182-
name: ${{ env.LOGS_ARTIFACT_NAME }}
183-
if: always()
184-
- name: Print out logs for immediate inspection
185-
# and markup the output with GitHub Actions logging commands
186-
run: |
187-
.github/workflows/scan-logs.sh "artifacts/$LOGS_ARTIFACT_NAME"
188-
if: always()

0 commit comments

Comments
 (0)