770a822fd4
This was what we used to do in the past. Spotted by @sarathms.
21 lines
484 B
YAML
21 lines
484 B
YAML
# Build and test macOS binary
|
|
name: macos
|
|
on:
|
|
push:
|
|
schedule:
|
|
- cron: "14 17 * * 3"
|
|
jobs:
|
|
build:
|
|
runs-on: "macos-latest"
|
|
steps:
|
|
- uses: actions/setup-go@v1
|
|
with:
|
|
go-version: "1.14"
|
|
- uses: actions/checkout@v2
|
|
- run: ./build.sh darwin
|
|
- run: ./smoketest.sh ./CLI/darwin/amd64/ooniprobe
|
|
- uses: actions/upload-artifact@v1
|
|
with:
|
|
name: ooniprobe-darwin-amd64
|
|
path: ./CLI/darwin/amd64/ooniprobe
|