feat(workflows/eval): Add krz01 to the CI
Some checks failed
build configuration / build_web02 (push) Successful in 1m10s
build configuration / build_vault01 (push) Successful in 1m24s
build configuration / build_storage01 (push) Successful in 1m31s
build configuration / build_compute01 (push) Successful in 1m33s
build configuration / build_web01 (push) Successful in 1m43s
lint / check (push) Successful in 26s
build configuration / build_rescue01 (push) Successful in 1m28s
build configuration / build_geo01 (push) Successful in 1m15s
build configuration / build_bridge01 (push) Successful in 1m11s
build configuration / build_geo02 (push) Successful in 2m2s
build configuration / push_to_cache_web02 (push) Successful in 1m39s
build configuration / push_to_cache_vault01 (push) Successful in 1m36s
build configuration / push_to_cache_storage01 (push) Successful in 1m40s
build configuration / push_to_cache_compute01 (push) Successful in 1m55s
build configuration / push_to_cache_rescue01 (push) Successful in 1m30s
build configuration / push_to_cache_bridge01 (push) Successful in 1m17s
build configuration / push_to_cache_geo01 (push) Successful in 1m40s
build configuration / push_to_cache_geo02 (push) Successful in 1m26s
build configuration / push_to_cache_web01 (push) Successful in 3m2s
build configuration / build_krz01 (push) Failing after 1m21s
build configuration / push_to_cache_krz01 (push) Has been skipped
Some checks failed
build configuration / build_web02 (push) Successful in 1m10s
build configuration / build_vault01 (push) Successful in 1m24s
build configuration / build_storage01 (push) Successful in 1m31s
build configuration / build_compute01 (push) Successful in 1m33s
build configuration / build_web01 (push) Successful in 1m43s
lint / check (push) Successful in 26s
build configuration / build_rescue01 (push) Successful in 1m28s
build configuration / build_geo01 (push) Successful in 1m15s
build configuration / build_bridge01 (push) Successful in 1m11s
build configuration / build_geo02 (push) Successful in 2m2s
build configuration / push_to_cache_web02 (push) Successful in 1m39s
build configuration / push_to_cache_vault01 (push) Successful in 1m36s
build configuration / push_to_cache_storage01 (push) Successful in 1m40s
build configuration / push_to_cache_compute01 (push) Successful in 1m55s
build configuration / push_to_cache_rescue01 (push) Successful in 1m30s
build configuration / push_to_cache_bridge01 (push) Successful in 1m17s
build configuration / push_to_cache_geo01 (push) Successful in 1m40s
build configuration / push_to_cache_geo02 (push) Successful in 1m26s
build configuration / push_to_cache_web01 (push) Successful in 3m2s
build configuration / build_krz01 (push) Failing after 1m21s
build configuration / push_to_cache_krz01 (push) Has been skipped
This commit is contained in:
parent
37d0ca9489
commit
fb610306ee
1 changed files with 31 additions and 0 deletions
|
@ -9,6 +9,16 @@ on:
|
|||
- main
|
||||
|
||||
jobs:
|
||||
build_krz01:
|
||||
runs-on: nix
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Build krz01
|
||||
run: |
|
||||
# Enter the shell
|
||||
nix-shell --run 'colmena build --on krz01'
|
||||
|
||||
build_compute01:
|
||||
runs-on: nix
|
||||
steps:
|
||||
|
@ -99,6 +109,27 @@ jobs:
|
|||
# Enter the shell
|
||||
nix-shell --run 'colmena build --on bridge01'
|
||||
|
||||
push_to_cache_krz01:
|
||||
runs-on: nix
|
||||
needs:
|
||||
- build_krz01
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Push to cache
|
||||
run: nix-shell --run push-to-nix-cache
|
||||
env:
|
||||
STORE_ENDPOINT: "https://tvix-store.dgnum.eu/infra-signing/"
|
||||
STORE_USER: "admin"
|
||||
STORE_PASSWORD: ${{ secrets.STORE_PASSWORD }}
|
||||
NODES: '[ "krz01" ]'
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
if: always()
|
||||
with:
|
||||
name: outputs_krz01
|
||||
path: uploaded.txt
|
||||
|
||||
push_to_cache_compute01:
|
||||
runs-on: nix
|
||||
needs:
|
||||
|
|
Loading…
Reference in a new issue