1 Commits

Author SHA1 Message Date
7159b3fd0f ci: fix build cache path
All checks were successful
Gentoo Utils / build-oci-image (push) Successful in 20s
Gentoo Utils / grep (push) Successful in 4s
Gentoo Utils / test (push) Successful in 32s
Gentoo Utils / build (push) Successful in 28s
Gentoo Utils / check-format (push) Successful in 10s
Gentoo Utils / docs (push) Successful in 17s
Gentoo Utils / fuzz (push) Successful in 1m15s
2025-12-27 17:06:43 -06:00

View File

@@ -94,7 +94,7 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v6
# TODO: This is currently unused by other jobs. I couldn't make meson not regenerate things regardless of
# TODO: This is currently unused by other projects. I couldn't make meson not regenerate things regardless of
# the build dir already existing.
- name: Build Cache Setup
uses: actions/cache@v5
@@ -117,7 +117,7 @@ jobs:
env:
CC: "clang"
CXX: "clang++"
needs: [build-oci-image]
needs: [build-oci-image, build]
container:
image: ${{ vars.REGISTRY_URL }}/${{ gitea.repository }}:${{ needs.build-oci-image.outputs.image_tag }}
steps:
@@ -136,7 +136,7 @@ jobs:
CC: "clang"
CXX: "clang++"
FUZZER_TIMEOUT_S: 300
needs: [build-oci-image]
needs: [build-oci-image, build]
container:
image: ${{ vars.REGISTRY_URL }}/${{ gitea.repository }}:${{ needs.build-oci-image.outputs.image_tag }}
steps:
@@ -164,7 +164,7 @@ jobs:
check-format:
runs-on: gentoo
needs: [build-oci-image]
needs: [build-oci-image, build]
container:
image: ${{ vars.REGISTRY_URL }}/${{ gitea.repository }}:${{ needs.build-oci-image.outputs.image_tag }}
steps:
@@ -179,7 +179,7 @@ jobs:
docs:
runs-on: gentoo
needs: [build-oci-image]
needs: [build-oci-image, build]
container:
image: ${{ vars.REGISTRY_URL }}/${{ gitea.repository }}:${{ needs.build-oci-image.outputs.image_tag }}
steps: