Skip to content

Commit

Permalink
#97: simplify macos workflow file by changing output dir path in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
tlamonthezie committed Aug 29, 2024
1 parent 3ea8c18 commit 8f44696
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/build-and-test-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
VT_TV_BUILD_DIR: /opt/build/vt-tv
VT_TV_TESTS_ENABLED: "ON"
VT_TV_COVERAGE_ENABLED: ${{ matrix.host.compiler.gcov == '' && 'OFF' || 'ON' }}
VT_TV_OUTPUT_DIR: /var/vt-tv/output
VT_TV_OUTPUT_DIR: ${{ github.workspace }}/output
VT_TV_TESTS_OUTPUT_DIR: /opt/src/vt-tv/output/tests
VT_TV_ARTIFACTS_DIR: /tmp/artifacts
CC: ~
Expand All @@ -34,11 +34,6 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set folder permissions
run: |
sudo mkdir -p ${{ env.VT_TV_OUTPUT_DIR }}
sudo chown -R $(whoami) /opt ${{ env.VT_TV_OUTPUT_DIR }}
- name: Set environment variables
run: |
echo "CC=$(which ${{ matrix.host.compiler.cc }})" >> $GITHUB_ENV
Expand Down

0 comments on commit 8f44696

Please sign in to comment.