Changeset a72a30 in git for .github/workflows/ci-sage.yml
- Timestamp:
- Jul 6, 2020, 8:54:43 PM (3 years ago)
- Branches:
- (u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
- Children:
- 9abf8fc98172f72207da0a32c4341bbce37c1329
- Parents:
- d2074da1e67ec5da4efe58b91ffe0852036db14f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
.github/workflows/ci-sage.yml
rd2074d ra72a30 46 46 env: 47 47 # Ubuntu packages to install so that the project's "make dist" can succeed 48 DIST_PREREQ: python3-setuptools48 DIST_PREREQ: tar 49 49 # Name of this project in the Sage distribution 50 SPKG: normaliz50 SPKG: singular 51 51 # Sage distribution packages to build 52 52 TARGETS_PRE: build/make/Makefile 53 TARGETS: SAGE_CHECK=yes pynormaliz54 TARGETS_OPTIONAL: build/make/Makefile53 TARGETS: SAGE_CHECK=yes singular 54 TARGETS_OPTIONAL: SAGE_CHECK=warn pynac pysingular 55 55 # Standard setting: Test the current beta release of Sage: 56 56 SAGE_REPO: sagemath/sage 57 57 SAGE_REF: develop 58 # Temporarily test on the branch from sage ticket 2795258 # 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_TICKET: 2 795260 SAGE_TICKET: 25993 61 61 REMOVE_PATCHES: "*" 62 62 … … 76 76 - name: Run make dist, prepare upstream artifact 77 77 run: | 78 (cd build/pkgs/${{ env.SPKG }}/src && ./ bootstrap.sh && ./configure && make dist) \78 (cd build/pkgs/${{ env.SPKG }}/src && ./autogen.sh && ./configure && make dist) \ 79 79 && mkdir -p upstream && cp build/pkgs/${{ env.SPKG }}/src/*.tar.gz upstream/${{ env.SPKG }}-git.tar.gz \ 80 80 && echo "sage-package create ${{ env.SPKG }} --version git --tarball ${{ env.SPKG }}-git.tar.gz --type=optional" > upstream/update-pkgs.sh \ 81 && (mkdir -p build/pkgs/pynormaliz && cd build/pkgs/pynormaliz && rm -rf src PyNormaliz && tar -xzf - --wildcards normaliz-\*/PyNormaliz && mv normaliz-*/PyNormaliz src && cd src && python3 setup.py sdist) <upstream/normaliz-git.tar.gz \82 && cp build/pkgs/pynormaliz/src/dist/*.tar.gz upstream/pynormaliz-git.tar.gz \83 && echo "sage-package create pynormaliz --version git --tarball pynormaliz-git.tar.gz --type=optional" >> upstream/update-pkgs.sh \84 81 && if [ -n "${{ env.REMOVE_PATCHES }}" ]; then echo "(cd ../build/pkgs/${{ env.SPKG }}/patches && rm -f ${{ env.REMOVE_PATCHES }}; :)" >> upstream/update-pkgs.sh; fi \ 85 82 && ls -l upstream/
Note: See TracChangeset
for help on using the changeset viewer.