forked from DGNum/infrastructure
feat(CI): build bridge01
This commit is contained in:
parent
18175ad4ab
commit
53fe784b5a
1 changed files with 31 additions and 0 deletions
|
@ -89,6 +89,16 @@ jobs:
|
||||||
# Enter the shell
|
# Enter the shell
|
||||||
nix-shell --run 'colmena build --on geo02'
|
nix-shell --run 'colmena build --on geo02'
|
||||||
|
|
||||||
|
build_bridge01:
|
||||||
|
runs-on: nix
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Build bridge01
|
||||||
|
run: |
|
||||||
|
# Enter the shell
|
||||||
|
nix-shell --run 'colmena build --on bridge01'
|
||||||
|
|
||||||
push_to_cache_compute01:
|
push_to_cache_compute01:
|
||||||
runs-on: nix
|
runs-on: nix
|
||||||
needs:
|
needs:
|
||||||
|
@ -235,3 +245,24 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: outputs_web02
|
name: outputs_web02
|
||||||
path: uploaded.txt
|
path: uploaded.txt
|
||||||
|
|
||||||
|
push_to_cache_bridge01:
|
||||||
|
runs-on: nix
|
||||||
|
needs:
|
||||||
|
- build_bridge01
|
||||||
|
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: '[ "bridge01" ]'
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
if: always()
|
||||||
|
with:
|
||||||
|
name: outputs_web02
|
||||||
|
path: uploaded.txt
|
||||||
|
|
Loading…
Reference in a new issue