gz-transport13 13.6.0 (#3528) #7688
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: brew test-bot | |
| on: | |
| push: | |
| branches: master | |
| pull_request: | |
| jobs: | |
| test-bot: | |
| runs-on: ubuntu-latest | |
| env: | |
| HOMEBREW_FORCE_VENDOR_RUBY: 1 | |
| # mitigation for "Warning: Bubblewrap is required to use the Linux sandbox but was not found." | |
| # remove when `brew doctor` can succeed without it | |
| HOMEBREW_NO_SANDBOX_LINUX: 1 | |
| steps: | |
| - name: Activate Homebrew | |
| if: runner.os == 'Linux' | |
| run: echo "/home/linuxbrew/.linuxbrew/bin" >> "$GITHUB_PATH" | |
| - name: Set up Homebrew | |
| id: set-up-homebrew | |
| uses: Homebrew/actions/setup-homebrew@main | |
| - name: Cache Bundler RubyGems | |
| id: cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ steps.set-up-homebrew.outputs.gems-path }} | |
| key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }} | |
| restore-keys: ${{ runner.os }}-rubygems- | |
| - run: brew test-bot --only-cleanup-before | |
| - run: brew test-bot --only-setup | |
| - run: brew test-bot --fail-fast --tap=osrf/simulation --only-tap-syntax |