diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-01-16 17:32:52 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-01-16 17:32:52 +0900 |
| commit | b60c01f4405ec3b5cc4a740fe994c3b9f39cf01f (patch) | |
| tree | 3d43cd726a26bba2336d2373a6dfe65a567a35a8 /.gitea/workflows/release.yml | |
| parent | 124743ffd3da7c31ef9c562593e15d88bb19008e (diff) | |
fortify: switch to static linking
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to '.gitea/workflows/release.yml')
| -rw-r--r-- | .gitea/workflows/release.yml | 53 |
1 files changed, 26 insertions, 27 deletions
diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 545274db..40827d2d 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -1,53 +1,52 @@ -name: Create distribution +name: Release on: push: tags: - - '*' + - 'v*' jobs: release: - name: Release + name: Create release runs-on: ubuntu-latest - container: - image: node:16-bookworm-slim steps: - - name: Get dependencies - run: >- - echo 'deb http://deb.debian.org/debian bookworm-backports main' >> /etc/apt/sources.list.d/backports.list && - apt-get update && - apt-get install -y - acl - git - gcc - pkg-config - libwayland-dev - wayland-protocols/bookworm-backports - libxcb1-dev - libacl1-dev - if: ${{ runner.os == 'Linux' }} - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Setup go uses: https://github.com/actions/setup-go@v5 with: go-version: '>=1.23.0' - - name: Go generate + - name: Install Nix + uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30 + with: + # explicitly enable sandbox + install_options: --daemon + extra_nix_config: | + sandbox = true + system-features = nixos-test benchmark big-parallel kvm + enable_kvm: true + + - name: Ensure environment run: >- - go generate ./... + apt-get update && apt-get install -y sqlite3 + if: ${{ runner.os == 'Linux' }} + + - name: Restore Nix store + uses: nix-community/cache-nix-action@v5 + with: + primary-key: nix-small-${{ runner.os }}-${{ hashFiles('**/*.nix') }} + restore-prefixes-first-match: nix-small-${{ runner.os }}- - name: Build for release - run: FORTIFY_VERSION='${{ github.ref_name }}' ./dist/release.sh + id: build-test + run: nix build --print-out-paths --print-build-logs .#dist - name: Release id: use-go-action uses: https://gitea.com/actions/release-action@main with: files: |- - dist/fortify-** + result/fortify-** api_key: '${{secrets.RELEASE_TOKEN}}' |
