Skip to content

Commit

Permalink
Fix Dockerfiles and installation - 19
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Saporetti Junior committed Dec 7, 2023
1 parent e4077c3 commit 2772aad
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
set-os-matrix:
runs-on: "ubuntu-latest"
outputs:
exclude: ${{ steps.set-matrix-items.outputs.include }}
exclude: ${{ steps.set-matrix-items.outputs.exclude }}
steps:
- name: Show Selected Input
run: |
Expand All @@ -67,17 +67,18 @@ jobs:
JSON="${JSON%?}"
fi
JSON="[${JSON:-'ubuntu-latest'}]" # Add brackets
echo "include=$( echo "${JSON}" )" >> $GITHUB_OUTPUT
echo "exclude=$( echo "${JSON}" )" >> $GITHUB_OUTPUT
- name: Show Final Matrix
run: |
echo "include=${{ steps.set-matrix-items.outputs.include }}"
echo "exclude=${{ steps.set-matrix-items.outputs.exclude }}"
build:
needs: set-os-matrix
strategy:
fail-fast: false
matrix:
os: ${{ fromJson(needs.set-os-matrix.outputs.include) }}
os: ['ubuntu-latest', 'macos-latest']
exclude: [{"os":"macos-latest"}]
runs-on: ${{ matrix.os }}
env:
HHS_LOG_DIR: ''
Expand Down

0 comments on commit 2772aad

Please sign in to comment.