Skip to content

Commit

Permalink
remove matrix options for testing, setting fail fast to true, fixing …
Browse files Browse the repository at this point in the history
…github_env call
  • Loading branch information
justinlaughlin committed Apr 5, 2024
1 parent a935d14 commit fa2eb0b
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@ jobs:
build:
# if: contains(github.event.pull_request.labels.*.name, 'in-test-with-mfem-release')
strategy:
fail-fast: false
fail-fast: true
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
os: [ubuntu-latest, macos-latest]
python-version: ["3.9"]
#"3.7", "3.8", "3.9", "3.10"]
os: [ubuntu-latest]
#, macos-latest]
# os: [ubuntu-20.04]

cuda: [false]
Expand All @@ -35,8 +37,8 @@ jobs:
- name: Set PYTHONPATH
run: |
echo "PYTHONLIB=$HOME/sandbox/lib/python${{ matrix.python-version }}/site-packages" >> $GITHUB_ENV
mkdir -p $PYTHONLIB
echo "PYTHONPATH=$PYTHONLIB:$PYTHONPATH" >> $GITHUB_ENV
mkdir -p ${{ env.PYTHONLIB }}
echo "PYTHONPATH=${{ env.PYTHONLIB }}:$PYTHONPATH" >> $GITHUB_ENV
- name: Set PATH
run: |
Expand Down

0 comments on commit fa2eb0b

Please sign in to comment.