aboutsummaryrefslogtreecommitdiffhomepage
path: root/.gitea
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-06-25 03:59:52 +0900
committerOphestra <cat@gensokyo.uk>2025-06-25 04:57:41 +0900
commit87e008d56de974947ebb99c2cc40b25d3c2cf43e (patch)
tree31791911e5226d6ec04e3fac7d91b0bf53e63aa5 /.gitea
parent399207321265307bb15f37d867f9370cd51c82a8 (diff)
treewide: rename to hakurei
Fortify makes little sense for a container tool. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to '.gitea')
-rw-r--r--.gitea/workflows/release.yml2
-rw-r--r--.gitea/workflows/test.yml22
2 files changed, 12 insertions, 12 deletions
diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml
index a0f2822d..ac263704 100644
--- a/.gitea/workflows/release.yml
+++ b/.gitea/workflows/release.yml
@@ -20,5 +20,5 @@ jobs:
uses: https://gitea.com/actions/release-action@main
with:
files: |-
- result/fortify-**
+ result/hakurei-**
api_key: '${{secrets.RELEASE_TOKEN}}'
diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml
index dcf71fde..70096439 100644
--- a/.gitea/workflows/test.yml
+++ b/.gitea/workflows/test.yml
@@ -5,25 +5,25 @@ on:
- pull_request
jobs:
- fortify:
- name: Fortify
+ hakurei:
+ name: Hakurei
runs-on: nix
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run NixOS test
- run: nix build --out-link "result" --print-out-paths --print-build-logs .#checks.x86_64-linux.fortify
+ run: nix build --out-link "result" --print-out-paths --print-build-logs .#checks.x86_64-linux.hakurei
- name: Upload test output
uses: actions/upload-artifact@v3
with:
- name: "fortify-vm-output"
+ name: "hakurei-vm-output"
path: result/*
retention-days: 1
race:
- name: Fortify (race detector)
+ name: Hakurei (race detector)
runs-on: nix
steps:
- name: Checkout
@@ -35,7 +35,7 @@ jobs:
- name: Upload test output
uses: actions/upload-artifact@v3
with:
- name: "fortify-race-vm-output"
+ name: "hakurei-race-vm-output"
path: result/*
retention-days: 1
@@ -93,7 +93,7 @@ jobs:
check:
name: Flake checks
needs:
- - fortify
+ - hakurei
- race
- sandbox
- sandbox-race
@@ -116,15 +116,15 @@ jobs:
- name: Build for test
id: build-test
run: >-
- export FORTIFY_REV="$(git rev-parse --short HEAD)" &&
- sed -i.old 's/version = /version = "0.0.0-'$FORTIFY_REV'"; # version = /' package.nix &&
+ export HAKUREI_REV="$(git rev-parse --short HEAD)" &&
+ sed -i.old 's/version = /version = "0.0.0-'$HAKUREI_REV'"; # version = /' package.nix &&
nix build --print-out-paths --print-build-logs .#dist &&
mv package.nix.old package.nix &&
- echo "rev=$FORTIFY_REV" >> $GITHUB_OUTPUT
+ echo "rev=$HAKUREI_REV" >> $GITHUB_OUTPUT
- name: Upload test build
uses: actions/upload-artifact@v3
with:
- name: "fortify-${{ steps.build-test.outputs.rev }}"
+ name: "hakurei-${{ steps.build-test.outputs.rev }}"
path: result/*
retention-days: 1