b5ba1e743f
Like in the previous PR, here we make macos and windows builds only run when we're preparing a release. While there, migrate the code to use the `./make` script. Tested in https://github.com/ooni/probe-cli/pull/331. Reference issue is https://github.com/ooni/probe/issues/1466
14 lines
325 B
YAML
14 lines
325 B
YAML
# macos builds ooniprobe for macos
|
|
name: macos
|
|
on:
|
|
push:
|
|
branches:
|
|
- "release/**"
|
|
jobs:
|
|
build:
|
|
runs-on: "macos-10.15"
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: ./make --disable-embedding-psiphon-config -t ./CLI/darwin/amd64/ooniprobe
|
|
- run: ./smoketest.sh ./CLI/darwin/amd64/ooniprobe
|