Merge pull request #111229 from cockroachdb/blathers/backport-staging… #109
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: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: cd build/release/bincheck && ./test-macos ${{ 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 }} |