Compare commits

..

No commits in common. "73aa285e8f36433a07f3b5bacd7859f84cfd652d" and "52f21a19f3230e62387bebb88d45d51b6375ac8d" have entirely different histories.

2 changed files with 10 additions and 22 deletions

View File

@ -23,13 +23,4 @@ jobs:
enable_kvm: true
- name: Run tests
run: |
nix --print-build-logs --experimental-features 'nix-command flakes' flake check --all-systems
nix build --out-link "result" --print-out-paths --print-build-logs .#checks.x86_64-linux.nixos-tests
- name: Upload test output
uses: actions/upload-artifact@v3
with:
name: "result"
path: result/*
retention-days: 1
run: nix --print-build-logs --experimental-features 'nix-command flakes' flake check --all-systems

View File

@ -44,16 +44,13 @@ jobs:
run: >-
go test ./...
- name: Build for test
id: build-test
- name: Build for Linux
run: >-
FORTIFY_VERSION="$(git rev-parse --short HEAD)"
bash -c './dist/release.sh &&
echo "rev=$FORTIFY_VERSION" >> $GITHUB_OUTPUT'
- name: Upload test build
uses: actions/upload-artifact@v3
with:
name: "fortify-${{ steps.build-test.outputs.rev }}"
path: dist/fortify-*
retention-days: 1
go build -v -ldflags '-s -w
-X git.ophivana.moe/security/fortify/internal.Version=${{ github.ref_name }}
-X git.ophivana.moe/security/fortify/internal.Fsu=/usr/bin/fsu
-X git.ophivana.moe/security/fortify/internal.Finit=/usr/libexec/fortify/finit
-X main.Fmain=/usr/bin/fortify
-X main.Fshim=/usr/libexec/fortify/fshim'
-o bin/ ./... &&
(cd bin && sha512sum --tag -b * > sha512sums)