Changeset a72a30 in git for .github/workflows


Ignore:
Timestamp:
Jul 6, 2020, 8:54:43 PM (4 years ago)
Author:
Matthias Koeppe <mkoeppe@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
9abf8fc98172f72207da0a32c4341bbce37c1329
Parents:
d2074da1e67ec5da4efe58b91ffe0852036db14f
Message:
.github/workflows/ci-sage.yml: Adjust for singular
File:
1 edited

Legend:

Unmodified
Added
Removed
  • .github/workflows/ci-sage.yml

    rd2074d ra72a30  
    4646env:
    4747  # Ubuntu packages to install so that the project's "make dist" can succeed
    48   DIST_PREREQ: python3-setuptools
     48  DIST_PREREQ: tar
    4949  # Name of this project in the Sage distribution
    50   SPKG:        normaliz
     50  SPKG:        singular
    5151  # Sage distribution packages to build
    5252  TARGETS_PRE: build/make/Makefile
    53   TARGETS:     SAGE_CHECK=yes pynormaliz
    54   TARGETS_OPTIONAL: build/make/Makefile
     53  TARGETS:     SAGE_CHECK=yes singular
     54  TARGETS_OPTIONAL: SAGE_CHECK=warn pynac pysingular
    5555  # Standard setting: Test the current beta release of Sage:
    5656  SAGE_REPO:   sagemath/sage
    5757  SAGE_REF:    develop
    58   # Temporarily test on the branch from sage ticket 27952
     58  # Temporarily test on the branch from sage ticket for singular 4.1.3 upgrade
    5959  SAGE_TRAC_GIT: git://trac.sagemath.org/sage.git
    60   SAGE_TICKET: 27952
     60  SAGE_TICKET: 25993
    6161  REMOVE_PATCHES: "*"
    6262
     
    7676      - name: Run make dist, prepare upstream artifact
    7777        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) \
    7979          && mkdir -p upstream && cp build/pkgs/${{ env.SPKG }}/src/*.tar.gz upstream/${{ env.SPKG }}-git.tar.gz \
    8080          && 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 \
    8481          && if [ -n "${{ env.REMOVE_PATCHES }}" ]; then echo "(cd ../build/pkgs/${{ env.SPKG }}/patches && rm -f ${{ env.REMOVE_PATCHES }}; :)" >> upstream/update-pkgs.sh; fi \
    8582          && ls -l upstream/
Note: See TracChangeset for help on using the changeset viewer.