hishtory/.github/workflows/slsa-releaser.yml

236 lines
8.1 KiB
YAML
Raw Normal View History

name: SLSA Client Releaser
2022-04-09 05:59:24 +02:00
on:
workflow_dispatch:
push:
branches: [ master ]
tags:
- "*"
2022-04-09 05:59:24 +02:00
permissions: read-all
jobs:
# ldflags to embed the commit hash in the binary
args:
runs-on: ubuntu-latest
outputs:
ldflags: ${{ steps.ldflags.outputs.value }}
steps:
- id: checkout
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2.3.4
with:
fetch-depth: 0
- id: ldflags
run: |
echo "::set-output name=value::$(./scripts/client-ldflags)"
# Trusted builders
build-linux-amd64:
2022-04-09 05:59:24 +02:00
permissions:
id-token: write
2022-05-28 08:30:49 +02:00
contents: write
actions: read
2022-04-09 05:59:24 +02:00
needs: args
uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@v1.10.0
2022-04-09 05:59:24 +02:00
with:
config-file: .github/slsa/.slsa-goreleaser-linux-amd64.yml
go-version: 1.21
evaluated-envs: "VERSION_LDFLAGS:${{needs.args.outputs.ldflags}}"
compile-builder: true # See github.com/slsa-framework/slsa-github-generator/issues/942
2022-12-12 05:39:45 +01:00
build-linux-arm64:
permissions:
id-token: write
contents: write
actions: read
needs: args
uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@v1.10.0
2022-12-12 05:39:45 +01:00
with:
config-file: .github/slsa/.slsa-goreleaser-linux-arm64.yml
go-version: 1.21
2022-12-12 05:39:45 +01:00
evaluated-envs: "VERSION_LDFLAGS:${{needs.args.outputs.ldflags}}"
compile-builder: true # See github.com/slsa-framework/slsa-github-generator/issues/942
build-linux-arm7:
permissions:
id-token: write
contents: write
actions: read
needs: args
uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@v1.10.0
with:
config-file: .github/slsa/.slsa-goreleaser-linux-arm7.yml
go-version: 1.21
evaluated-envs: "VERSION_LDFLAGS:${{needs.args.outputs.ldflags}}"
compile-builder: true # See github.com/slsa-framework/slsa-github-generator/issues/942
build-freebsd-amd64:
permissions:
id-token: write
contents: write
actions: read
needs: args
uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@v1.10.0
with:
config-file: .github/slsa/.slsa-goreleaser-freebsd-amd64.yml
go-version: 1.21
evaluated-envs: "VERSION_LDFLAGS:${{needs.args.outputs.ldflags}}"
compile-builder: true # See github.com/slsa-framework/slsa-github-generator/issues/942
2023-09-20 03:54:04 +02:00
build-netbsd-amd64:
permissions:
id-token: write
contents: write
actions: read
needs: args
uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@v1.10.0
2023-09-20 03:54:04 +02:00
with:
config-file: .github/slsa/.slsa-goreleaser-netbsd-amd64.yml
go-version: 1.21
2023-09-20 03:54:04 +02:00
evaluated-envs: "VERSION_LDFLAGS:${{needs.args.outputs.ldflags}}"
compile-builder: true # See github.com/slsa-framework/slsa-github-generator/issues/942
build-darwin-amd64:
permissions:
id-token: write
contents: write
actions: read
2022-05-28 18:34:53 +02:00
needs:
- args
uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@v1.10.0
with:
config-file: .github/slsa/.slsa-goreleaser-darwin-amd64.yml
go-version: 1.21
evaluated-envs: "VERSION_LDFLAGS:${{needs.args.outputs.ldflags}}"
2022-10-02 00:14:51 +02:00
compile-builder: true # See github.com/slsa-framework/slsa-github-generator/issues/942
build-darwin-arm64:
permissions:
id-token: write
contents: write
actions: read
2022-05-28 18:34:53 +02:00
needs:
- args
uses: slsa-framework/slsa-github-generator/.github/workflows/builder_go_slsa3.yml@v1.10.0
with:
config-file: .github/slsa/.slsa-goreleaser-darwin-arm64.yml
go-version: 1.21
evaluated-envs: "VERSION_LDFLAGS:${{needs.args.outputs.ldflags}}"
2022-10-02 00:14:51 +02:00
compile-builder: true # See github.com/slsa-framework/slsa-github-generator/issues/942
# Sign the binaries and upload the signed binaries
macos_signer:
runs-on: macos-11.0
needs:
- build-darwin-amd64
- build-darwin-arm64
permissions:
contents: write
2022-04-09 05:59:24 +02:00
steps:
- uses: actions/checkout@v2
- name: Extra Sleep
run: |
2023-11-09 03:58:34 +01:00
sleep 60
- uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
with:
name: hishtory-darwin-arm64
- uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
with:
name: hishtory-darwin-amd64
- name: Download and sign the latest executables
env:
GH_TOKEN: ${{ github.token }}
MACOS_CERTIFICATE: ${{ secrets.MACOS_CERTIFICATE }}
MACOS_CERTIFICATE_PWD: ${{ secrets.MACOS_CERTIFICATE_PWD }}
run: |
2022-05-24 08:25:12 +02:00
export GITHUB_TOKEN="${{ secrets.GITHUB_TOKEN }}"
brew install coreutils
2022-05-24 08:25:12 +02:00
python3 scripts/actions-sign.py
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: hishtory-darwin-arm64
path: hishtory-darwin-arm64
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: hishtory-darwin-amd64
path: hishtory-darwin-amd64
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: hishtory-darwin-arm64-unsigned
path: hishtory-darwin-arm64-unsigned
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: hishtory-darwin-amd64-unsigned
path: hishtory-darwin-amd64-unsigned
2022-04-09 05:59:24 +02:00
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
2022-04-09 05:59:24 +02:00
with:
files: |
2022-05-25 07:26:24 +02:00
hishtory-darwin-arm64
hishtory-darwin-arm64-unsigned
2022-05-25 07:26:24 +02:00
hishtory-darwin-amd64
hishtory-darwin-amd64-unsigned
# Validate the signed binaries
validate:
2022-05-24 08:25:12 +02:00
permissions:
contents: write
runs-on: macos-latest
2022-05-24 08:25:12 +02:00
needs:
- build-linux-amd64
- build-darwin-amd64
- build-darwin-arm64
- macos_signer
2022-05-24 08:25:12 +02:00
steps:
2023-11-04 17:51:58 +01:00
- uses: actions/checkout@v4
- name: Set up Go
Run integration tests in parallel to speed up testing (#175) * Remove a few direct DB insertions to prepare for parallel tests * Revert "Remove a few direct DB insertions to prepare for parallel tests" This reverts commit f8a3552ad8b942d5ff98cc7722750a1640ebdc88. * Add rudimentary experiment of splitting tests into two chunks to make them faster * Add missing tag * Remove code that enforces that all goldens are used, since it is incompatible with how tests are currently split into chunks * Lay out the framework for checking goldens being used across all test runs * Fix missing brace * Revert "Remove code that enforces that all goldens are used, since it is incompatible with how tests are currently split into chunks" This reverts commit 06cc3eedbc5be6a09dbc3f274adcacd875eb25a8. * Add initial work towards checking that all goldens are used * Delete incorrect and unreferenced matrix * Upgrade actions/upload-artifact to see if that makes the download in the next job work * Alternatively, try downloading the artifact by name * Update golden checker to read all the golden artifacts * Swap to using glob to enumerate all golden files, rather than hardcoding them * Remove debugging commands * Remove goldens that are actually used * Remove another golden that is actually used * Add more comprehensive support for test sharding * Fix references to test shards and increase shard count * Shard the fuzz test * Add debug prints * Mark additional tests for sharding * Fix logic error that broke test sharding * Remove debug print * Fix incorrect logic with skipping the fuzz test * Move sharding functions to testutils and add some comments * Upgrade all setup-go actions to enable caching of deps * Remove goldens that don't exist * Remove new line * Reduce delay * Correct stage name * Remove incorrect skip code from the first version of sharding * Remove unused import * Reduce number of test shards to match GitHub's limit of 5 concurrent macos jobs * Use cask for installing homebrew to speed up github actions * More cleanup for unused goldens
2024-02-11 20:54:27 +01:00
uses: actions/setup-go@v4
2023-11-04 17:51:58 +01:00
with:
go-version: 1.21
2022-05-24 08:25:12 +02:00
- uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
with:
name: hishtory-linux-amd64
- uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
with:
name: hishtory-linux-amd64.intoto.jsonl
- uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
with:
name: hishtory-linux-arm64
- uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
with:
name: hishtory-linux-arm64.intoto.jsonl
- uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
with:
name: hishtory-darwin-amd64
- uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
with:
name: hishtory-darwin-amd64.intoto.jsonl
- uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
with:
name: hishtory-darwin-amd64-unsigned
- uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
with:
name: hishtory-darwin-arm64
- uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
with:
name: hishtory-darwin-arm64.intoto.jsonl
- uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741
with:
name: hishtory-darwin-arm64-unsigned
- name: Validate Release
run: |
# export HISHTORY_TEST=1
# curl https://hishtory.dev/install.py | python3 -
# unset HISHTORY_TEST
# go build
# python3 scripts/actions-validate.py
echo DONE > hishtory-release-validation-completed
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
hishtory-release-validation-completed
- name: Trigger the backend API service so it knows a release is finished
run: |
sleep 10
curl https://api.hishtory.dev/api/v1/trigger-cron