Skip to content

Commit 13af11a

Browse files
committed
Fix: Job names were inprecise
1 parent 9a1a5b2 commit 13af11a

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

.github/workflows/test-new-runtime-examples.yml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ on:
44

55
jobs:
66
run_debian_11:
7-
name: "Run in DigitalOcean Droplet with Debian 11"
7+
name: "Test new runtime on Droplet with Debian 11"
88
runs-on: ubuntu-latest
9-
concurrency: droplet-aleph-vm-debian-11
9+
concurrency: droplet-aleph-vm-runtime
1010

1111
steps:
1212
- name: Checkout repository
@@ -41,9 +41,9 @@ jobs:
4141
--vpc-uuid 8c422d04-5dfa-4eca-add7-1e41b5f60d39 \
4242
--enable-ipv6 \
4343
--ssh-keys 18:09:36:58:79:44:bb:84:45:c8:6f:9a:f6:b8:0a:c5 \
44-
aleph-vm-ci-debian-11
45-
46-
- name: Build custom runtime
44+
aleph-vm-ci-runtime
45+
46+
- name: "Build custom runtime"
4747
- run: |
4848
sudo apt update
4949
sudo apt install -y debootstrap
@@ -61,18 +61,18 @@ jobs:
6161
6262
- name: Wait for the system to setup and boot
6363
run: |
64-
export DROPLET_IPV4="$(doctl compute droplet get aleph-vm-ci-debian-11 --output json | ./.github/scripts/extract_droplet_ipv4.py)"
64+
export DROPLET_IPV4="$(doctl compute droplet get aleph-vm-ci-runtime --output json | ./.github/scripts/extract_droplet_ipv4.py)"
6565
until ssh-keyscan -H ${DROPLET_IPV4}; do sleep 1; done
6666
6767
- name: Copy the runtime to the system
6868
run: |
69-
export DROPLET_IPV4="$(doctl compute droplet get aleph-vm-ci-debian-11 --output json | ./.github/scripts/extract_droplet_ipv4.py)"
69+
export DROPLET_IPV4="$(doctl compute droplet get aleph-vm-ci-runtime --output json | ./.github/scripts/extract_droplet_ipv4.py)"
7070
ssh-keyscan -H ${DROPLET_IPV4} > ~/.ssh/known_hosts
7171
scp runtimes/aleph-debian-11-python/rootfs.squashfs root@${DROPLET_IPV4}:/opt
7272
7373
- name: Install Aleph-VM on the Droplet
7474
run: |
75-
export DROPLET_IPV4="$(doctl compute droplet get aleph-vm-ci-debian-11 --output json | ./.github/scripts/extract_droplet_ipv4.py)"
75+
export DROPLET_IPV4="$(doctl compute droplet get aleph-vm-ci-runtime --output json | ./.github/scripts/extract_droplet_ipv4.py)"
7676
ssh-keyscan -H ${DROPLET_IPV4} > ~/.ssh/known_hosts
7777
7878
ssh root@${DROPLET_IPV4} DEBIAN_FRONTEND=noninteractive "apt-get -o DPkg::Lock::Timeout=60 update"
@@ -90,7 +90,7 @@ jobs:
9090
9191
- name: Test Aleph-VM on the Droplet
9292
run: |
93-
export DROPLET_IPV4="$(doctl compute droplet get aleph-vm-ci-debian-11 --output json | ./.github/scripts/extract_droplet_ipv4.py)"
93+
export DROPLET_IPV4="$(doctl compute droplet get aleph-vm-ci-runtime --output json | ./.github/scripts/extract_droplet_ipv4.py)"
9494
9595
sleep 3
9696
curl --retry 5 --max-time 10 --fail "http://${DROPLET_IPV4}:4020/about/usage/system"
@@ -99,5 +99,4 @@ jobs:
9999
- name: Cleanup
100100
if: always()
101101
run: |
102-
doctl compute droplet delete -f aleph-vm-ci-debian-11
103-
102+
doctl compute droplet delete -f aleph-vm-ci-runtime

0 commit comments

Comments
 (0)