Skip to content

macos

macos #1874

Workflow file for this run

# File generated by `go run ./internal/cmd/ghgen`; DO NOT EDIT.
name: macos
on:
push:
branches:
- "release/**"
- "fullbuild"
- "macosbuild"
tags:
- "v*"
schedule:
- cron: "17 1 * * *"
jobs:
build_darwin_cli:
runs-on: macos-12
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get GOVERSION content
id: goversion
run: echo "version=$(cat GOVERSION)" >> "$GITHUB_OUTPUT"
- uses: magnetikonline/action-golang-cache@v4
with:
go-version: "${{ steps.goversion.outputs.version }}"
cache-key-suffix: "-macos-${{ steps.goversion.outputs.version }}"
- run: |
echo -n $PSIPHON_CONFIG_KEY > ./internal/engine/psiphon-config.key
echo $PSIPHON_CONFIG_JSON_AGE_BASE64 | base64 -d > ./internal/engine/psiphon-config.json.age
env:
PSIPHON_CONFIG_KEY: ${{ secrets.PSIPHON_CONFIG_KEY }}
PSIPHON_CONFIG_JSON_AGE_BASE64: ${{ secrets.PSIPHON_CONFIG_JSON_AGE_BASE64 }}
- run: make CLI/darwin
- uses: actions/upload-artifact@v3
with:
name: ooniprobe-darwin-amd64
path: ./CLI/ooniprobe-darwin-amd64
- uses: actions/upload-artifact@v3
with:
name: ooniprobe-darwin-arm64
path: ./CLI/ooniprobe-darwin-arm64
- uses: actions/upload-artifact@v3
with:
name: miniooni-darwin-amd64
path: ./CLI/miniooni-darwin-amd64
- uses: actions/upload-artifact@v3
with:
name: miniooni-darwin-arm64
path: ./CLI/miniooni-darwin-arm64
test_darwin_cli:
runs-on: macos-12
needs: build_darwin_cli
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/download-artifact@v3
with:
name: ooniprobe-darwin-amd64
- run: chmod +x ooniprobe-darwin-amd64
- run: ./E2E/ooniprobe.bash ./ooniprobe-darwin-amd64
shell: bash
publish_darwin_cli:
runs-on: macos-12
needs: test_darwin_cli
permissions:
contents: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/download-artifact@v3
with:
name: ooniprobe-darwin-amd64
- uses: actions/download-artifact@v3
with:
name: ooniprobe-darwin-arm64
- uses: actions/download-artifact@v3
with:
name: miniooni-darwin-amd64
- uses: actions/download-artifact@v3
with:
name: miniooni-darwin-arm64
- run: ./script/ghpublish.bash ooniprobe-darwin-amd64 ooniprobe-darwin-arm64 miniooni-darwin-amd64 miniooni-darwin-arm64
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# End of autogenerated file