fix cache
All checks were successful
Gentoo Utils / grep (push) Successful in 5s
Gentoo Utils / build (push) Successful in 23s
Gentoo Utils / build-oci-image (push) Successful in 21s
Gentoo Utils / check-format (push) Successful in 9s
Gentoo Utils / docs (push) Successful in 16s
Gentoo Utils / test (push) Successful in 29s
Gentoo Utils / fuzz (push) Successful in 1m18s
All checks were successful
Gentoo Utils / grep (push) Successful in 5s
Gentoo Utils / build (push) Successful in 23s
Gentoo Utils / build-oci-image (push) Successful in 21s
Gentoo Utils / check-format (push) Successful in 9s
Gentoo Utils / docs (push) Successful in 16s
Gentoo Utils / test (push) Successful in 29s
Gentoo Utils / fuzz (push) Successful in 1m18s
This commit is contained in:
@@ -16,7 +16,7 @@ jobs:
|
|||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
steps:
|
steps:
|
||||||
- name: Restore git cache
|
- name: Restore git cache
|
||||||
uses: actions/cache@v5
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: .git
|
path: .git
|
||||||
key: gitea-repo-${{ gitea.repository }}-${{ gitea.ref }}
|
key: gitea-repo-${{ gitea.repository }}-${{ gitea.ref }}
|
||||||
@@ -94,12 +94,7 @@ jobs:
|
|||||||
- name: Checkout repo
|
- name: Checkout repo
|
||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Build
|
- name: Build Cache Setup
|
||||||
run: |
|
|
||||||
meson setup -Dfuzz=enabled -Dtests=enabled -Dbuildtype=debugoptimized -Ddocs=enabled build
|
|
||||||
meson compile -C build
|
|
||||||
|
|
||||||
- name: Cache Build + Subprojects
|
|
||||||
uses: actions/cache@v5
|
uses: actions/cache@v5
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
@@ -107,6 +102,12 @@ jobs:
|
|||||||
build
|
build
|
||||||
key: build-${{ gitea.repository }}-${{ gitea.sha }}
|
key: build-${{ gitea.repository }}-${{ gitea.sha }}
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
meson setup -Dfuzz=enabled -Dtests=enabled -Dbuildtype=debugoptimized -Ddocs=enabled build
|
||||||
|
meson compile -C build
|
||||||
|
|
||||||
|
|
||||||
# FIXME: Currently this rebuilds everything. Instead we should bring over the build dir from the build job. This will come in handy
|
# FIXME: Currently this rebuilds everything. Instead we should bring over the build dir from the build job. This will come in handy
|
||||||
# when we have multiple build targets and configs. What we have currently is fine until we get lots of builds going
|
# when we have multiple build targets and configs. What we have currently is fine until we get lots of builds going
|
||||||
test:
|
test:
|
||||||
@@ -127,7 +128,7 @@ jobs:
|
|||||||
path: |
|
path: |
|
||||||
subprojects
|
subprojects
|
||||||
build
|
build
|
||||||
key: gitea-repo-${{ gitea.repository }}-${{ gitea.sha }}
|
key: build-${{ gitea.repository }}-${{ gitea.sha }}
|
||||||
|
|
||||||
- name: test
|
- name: test
|
||||||
run: |
|
run: |
|
||||||
@@ -154,7 +155,7 @@ jobs:
|
|||||||
path: |
|
path: |
|
||||||
subprojects
|
subprojects
|
||||||
build
|
build
|
||||||
key: gitea-repo-${{ gitea.repository }}-${{ gitea.sha }}
|
key: build-${{ gitea.repository }}-${{ gitea.sha }}
|
||||||
# FIXME: Get rid of this step when portage has fixes merged?
|
# FIXME: Get rid of this step when portage has fixes merged?
|
||||||
# needed because portage has fixes upstream we need that arent stable yet
|
# needed because portage has fixes upstream we need that arent stable yet
|
||||||
- name: Checkout tip of portage
|
- name: Checkout tip of portage
|
||||||
@@ -189,7 +190,7 @@ jobs:
|
|||||||
path: |
|
path: |
|
||||||
subprojects
|
subprojects
|
||||||
build
|
build
|
||||||
key: gitea-repo-${{ gitea.repository }}-${{ gitea.sha }}
|
key: build-${{ gitea.repository }}-${{ gitea.sha }}
|
||||||
|
|
||||||
- name: Check Formatting
|
- name: Check Formatting
|
||||||
run: |
|
run: |
|
||||||
@@ -212,7 +213,7 @@ jobs:
|
|||||||
path: |
|
path: |
|
||||||
subprojects
|
subprojects
|
||||||
build
|
build
|
||||||
key: gitea-repo-${{ gitea.repository }}-${{ gitea.sha }}
|
key: build-${{ gitea.repository }}-${{ gitea.sha }}
|
||||||
|
|
||||||
- name: Build Documentation
|
- name: Build Documentation
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Reference in New Issue
Block a user