Skip to content

Commit

Permalink
install ccache and check bundler path
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Aug 19, 2024
1 parent fb4198c commit 0d41e80
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
with:
ruby-version: ${{ env.DEFAULT_RUBY_VERSION }}
bundler-cache: true
- run: printenv
- run: printenv && which -a bundle
- run: ./dev/ci/setup-host cxx
- run: ./dev/ci/run-tests-with-docker cxx
if: matrix.os == 'ubuntu-latest'
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
with:
ruby-version: ${{ env.DEFAULT_RUBY_VERSION }}
bundler-cache: true
- run: printenv
- run: printenv && which -a bundle
- run: ./dev/ci/setup-host ${{ matrix.integration.label }}
- run: ./dev/ci/run-tests-with-docker ${{ matrix.integration.label }}
if: matrix.os == 'ubuntu-latest'
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
with:
ruby-version: ${{ env.DEFAULT_RUBY_VERSION }}
bundler-cache: true
- run: printenv
- run: printenv && which -a bundle
- run: ./dev/ci/setup-host ${{matrix.lang.name}}
- run: ./dev/ci/run-tests-with-docker ${{matrix.lang.name}}
if: matrix.os == 'ubuntu-latest'
Expand All @@ -132,7 +132,7 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: true
- run: printenv
- run: printenv && which -a bundle
- run: ./dev/ci/setup-host homebrew-packaging
- run: ./dev/ci/run-tests-natively homebrew-packaging
- uses: actions/upload-artifact@v4
Expand All @@ -153,7 +153,7 @@ jobs:
with:
ruby-version: ${{ env.DEFAULT_RUBY_VERSION }}
bundler-cache: true
- run: printenv
- run: printenv && which -a bundle
- run: ./dev/ci/setup-host source-packaging
- run: ./dev/ci/run-tests-with-docker source-packaging
- uses: actions/upload-artifact@v4
Expand Down
2 changes: 2 additions & 0 deletions dev/ci/setup-host
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ if [ "${GITHUB_ACTIONS:-false}" = "true" ]; then
# Create this file now because otherwise it would be owned by root,
run touch test/test.log

brew update
brew install ccache
echo
fi

Expand Down

0 comments on commit 0d41e80

Please sign in to comment.