forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (28 loc) · 869 Bytes
/
bincheck.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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 }}