Merge pull request #123596 from cockroachdb/blathers/backport-release… #151
Workflow file for this run
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: bincheck | |
on: | |
push: | |
tags: [ v* ] | |
permissions: | |
contents: read | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: cd build/release/bincheck && ./test-linux ${{ github.ref_name }} ${{ github.sha }} | |
darwin-amd64: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: cd build/release/bincheck && ./test-macos-amd64 ${{ github.ref_name }} ${{ github.sha }} | |
darwin-arm64: | |
runs-on: macos-latest-xlarge | |
steps: | |
- uses: actions/checkout@v3 | |
- run: cd build/release/bincheck && ./test-macos-arm64 ${{ github.ref_name }} ${{ github.sha }} | |
windows: | |
runs-on: windows-latest | |
steps: | |
- run: git config --system core.longpaths true | |
- uses: actions/checkout@v3 | |
- run: cd build/release/bincheck && bash test-windows ${{ github.ref_name }} ${{ github.sha }} |