# File generated by `go run ./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-11 steps: - uses: actions/checkout@v2 with: fetch-depth: 0 - name: Get GOVERSION content id: goversion run: echo ::set-output name=version::$(cat GOVERSION) - uses: magnetikonline/action-golang-cache@v2 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@v2 with: name: ooniprobe-darwin-amd64 path: ./CLI/ooniprobe-darwin-amd64 - uses: actions/upload-artifact@v2 with: name: ooniprobe-darwin-arm64 path: ./CLI/ooniprobe-darwin-arm64 - uses: actions/upload-artifact@v2 with: name: miniooni-darwin-amd64 path: ./CLI/miniooni-darwin-amd64 - uses: actions/upload-artifact@v2 with: name: miniooni-darwin-arm64 path: ./CLI/miniooni-darwin-arm64 test_darwin_cli: runs-on: macos-11 needs: build_darwin_cli steps: - uses: actions/checkout@v2 with: fetch-depth: 0 - uses: actions/download-artifact@v2 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-11 needs: test_darwin_cli permissions: contents: write steps: - uses: actions/checkout@v2 with: fetch-depth: 0 - uses: actions/download-artifact@v2 with: name: ooniprobe-darwin-amd64 - uses: actions/download-artifact@v2 with: name: ooniprobe-darwin-arm64 - uses: actions/download-artifact@v2 with: name: miniooni-darwin-amd64 - uses: actions/download-artifact@v2 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