Changeset 7d6820 in git for .github/workflows


Ignore:
Timestamp:
Feb 19, 2021, 7:01:35 PM (3 years ago)
Author:
Matthias Koeppe <mkoeppe@…>
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
Children:
d0fa8029c9d1522294921ab776348aa1c59f7310
Parents:
39d022e97bd4ab8f3d69c329dbbe82df1584e237
git-author:
Matthias Koeppe <mkoeppe@math.ucdavis.edu>2021-02-19 10:01:35-08:00
git-committer:
Matthias Koeppe <mkoeppe@math.ucdavis.edu>2021-02-22 08:32:14-08:00
Message:
.github/workflows/ci-sage.yml: Test also on macOS Big Sur and with different Xcode versions
File:
1 edited

Legend:

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

    r39d022e r7d6820  
    270270      max-parallel: 4
    271271      matrix:
     272        os: [ macos-10.15, macos-11.0 ]
    272273        tox_system_factor: [homebrew-macos, homebrew-macos-python3_xcode, homebrew-macos-python3_xcode-nokegonly, conda-forge-macos]
    273274        tox_packages_factor: [minimal, standard]
     275        xcode_version_factor: [11.7, default, 12.3]
    274276
    275277    needs: [dist]
     
    277279    env:
    278280      TOX_ENV: local-${{ matrix.tox_system_factor }}-${{ matrix.tox_packages_factor }}
    279       LOGS_ARTIFACT_NAME: logs-commit-${{ github.sha }}-tox-local-${{ matrix.tox_system_factor }}-${{ matrix.tox_packages_factor }}
     281      LOGS_ARTIFACT_NAME: logs-commit-${{ github.sha }}-tox-local-${{ matrix.tox_system_factor }}-${{ matrix.tox_packages_factor }}-${{ matrix.os }}-xcode_${{ matrix.xcode_version_factor }}
    280282      DOCKER_TARGETS: configured with-targets with-targets-optional
    281283
    282284    steps:
    283285
     286      - name: Select Xcode version
     287        run: |
     288          if [ ${{ matrix.xcode_version_factor }} != default ]; then sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode_version_factor }}.app; fi
    284289      - name: Check out SageMath
    285290        uses: actions/checkout@v2
Note: See TracChangeset for help on using the changeset viewer.