- Timestamp:
- Jul 25, 2020, 9:26:45 PM (3 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 9ac448e5f21800cd140c1eb1dd01da653196fa00
- Parents:
- ab694961721fd4dc27fbaba148bdf67257c85c51
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
.github/workflows/ci-sage.yml
rab6949 refb3fc 58 58 # Temporarily test on the branch from sage ticket for singular 4.1.3 upgrade 59 59 SAGE_TRAC_GIT: git://trac.sagemath.org/sage.git 60 SAGE_TRAC_COMMAND: try 60 61 SAGE_TICKET: 25993 61 62 REMOVE_PATCHES: "*" … … 133 134 # Random sleep and retry to limit the load on trac.sagemath.org 134 135 run: | 135 if [ ! -d .git ]; then git init; fi; git remote add trac ${{ env.SAGE_TRAC_GIT }} && x=1 && while [ $x -le 5 ]; do x=$(( $x + 1 )); sleep $(( $RANDOM % 60 + 1 )); if git-trac-command/git-trac checkout$SAGE_TICKET; then exit 0; fi; sleep 40; done; exit 1136 if [ ! -d .git ]; then git init; fi; git remote add trac ${{ env.SAGE_TRAC_GIT }} && x=1 && while [ $x -le 5 ]; do x=$(( $x + 1 )); sleep $(( $RANDOM % 60 + 1 )); if git-trac-command/git-trac ${{ env.SAGE_TRAC_COMMAND }} $SAGE_TICKET; then exit 0; fi; sleep 40; done; exit 1 136 137 if: env.SAGE_TRAC_GIT != '' 137 138 - uses: actions/download-artifact@v2 … … 204 205 max-parallel: 32 205 206 matrix: 206 tox_system_factor: [ubuntu-trusty, ubuntu-xenial, ubuntu-bionic, ubuntu-eoan, ubuntu-focal, debian-jessie, debian-stretch, debian-buster, debian-bullseye, debian-sid, linuxmint-17, linuxmint-18, linuxmint-19, linuxmint-19.3, fedora-26, fedora-27, fedora-28, fedora-29, fedora-30, fedora-31, centos-7, centos-8, archlinux-latest, slackware-14.2, conda-forge, ubuntu-bionic-i386, ubuntu-eoan-i386, debian-buster-i386, centos-7-i386 ]207 tox_system_factor: [ubuntu-trusty, ubuntu-xenial, ubuntu-bionic, ubuntu-eoan, ubuntu-focal, debian-jessie, debian-stretch, debian-buster, debian-bullseye, debian-sid, linuxmint-17, linuxmint-18, linuxmint-19, linuxmint-19.3, fedora-26, fedora-27, fedora-28, fedora-29, fedora-30, fedora-31, centos-7, centos-8, archlinux-latest, slackware-14.2, conda-forge, ubuntu-bionic-i386, ubuntu-eoan-i386, debian-buster-i386, centos-7-i386, raspbian-buster-armhf] 207 208 tox_packages_factor: [minimal, standard] 208 209 env: … … 226 227 shell: bash {0} 227 228 run: | 228 if [ ! -d .git ]; then git init; fi; git remote add trac ${{ env.SAGE_TRAC_GIT }} && x=1 && while [ $x -le 5 ]; do x=$(( $x + 1 )); sleep $(( $RANDOM % 60 + 1 )); if git-trac-command/git-trac checkout$SAGE_TICKET; then exit 0; fi; sleep 40; done; exit 1229 if [ ! -d .git ]; then git init; fi; git remote add trac ${{ env.SAGE_TRAC_GIT }} && x=1 && while [ $x -le 5 ]; do x=$(( $x + 1 )); sleep $(( $RANDOM % 60 + 1 )); if git-trac-command/git-trac ${{ env.SAGE_TRAC_COMMAND }} $SAGE_TICKET; then exit 0; fi; sleep 40; done; exit 1 229 230 if: env.SAGE_TRAC_GIT != '' 230 231 - uses: actions/download-artifact@v2 … … 308 309 shell: bash {0} 309 310 run: | 310 if [ ! -d .git ]; then git init; fi; git remote add trac ${{ env.SAGE_TRAC_GIT }} && x=1 && while [ $x -le 5 ]; do x=$(( $x + 1 )); sleep $(( $RANDOM % 60 + 1 )); if git-trac-command/git-trac checkout$SAGE_TICKET; then exit 0; fi; sleep 40; done; exit 1311 if [ ! -d .git ]; then git init; fi; git remote add trac ${{ env.SAGE_TRAC_GIT }} && x=1 && while [ $x -le 5 ]; do x=$(( $x + 1 )); sleep $(( $RANDOM % 60 + 1 )); if git-trac-command/git-trac ${{ env.SAGE_TRAC_COMMAND }} $SAGE_TICKET; then exit 0; fi; sleep 40; done; exit 1 311 312 if: env.SAGE_TRAC_GIT != '' 312 313 - uses: actions/download-artifact@v2
Note: See TracChangeset
for help on using the changeset viewer.