gz-math7: patch to build multiple python bindings (#2840) #5833
This file contains 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-22.04 | |
env: | |
HOMEBREW_FORCE_VENDOR_RUBY: 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@master | |
- name: Cache Bundler RubyGems | |
id: cache | |
uses: actions/cache@v3 | |
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 |