Skip to content

Commit

Permalink
better job names; wait as root
Browse files Browse the repository at this point in the history
  • Loading branch information
qrkourier committed Aug 22, 2024
1 parent 21326e1 commit 6de1fce
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test-deployments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ env:

jobs:
build-linux-packages:
name: ${{ matrix.package_name }} ${{ matrix.arch.gox }} ${{ matrix.packager }}
name: Build ${{ matrix.package_name }} ${{ matrix.arch.gox }} ${{ matrix.packager }}
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -82,9 +82,9 @@ jobs:
path: ./release/${{ matrix.package_name }}*.${{ matrix.packager }}
if-no-files-found: error

install-linux-packages:
dry-run-linux-packages:
needs: build-linux-packages
name: ${{ format('{0}:{1}', matrix.distro.name, matrix.distro.version) }} ${{ matrix.arch.gox }}
name: Dry Run ${{ format('{0}:{1}', matrix.distro.name, matrix.distro.version) }} ${{ matrix.arch.gox }}
runs-on: ubuntu-latest
# iterate over an assortment of popular distribution images from the docker.io/library of vetted images
container:
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
ZITI_PWD=${ZITI_PWD}
EOF
sudo systemctl start ziti-controller.service
systemd-run --wait --quiet --service-type=oneshot --property=TimeoutStartSec=20s systemctl is-active ziti-controller.service
sudo systemd-run --wait --quiet --service-type=oneshot --property=TimeoutStartSec=20s systemctl is-active ziti-controller.service
ziti edge login \
--ca /var/lib/private/ziti-controller/pki/root/certs/root.cert \
Expand All @@ -214,7 +214,7 @@ jobs:
ZITI_ENROLL_TOKEN=${ZITI_ENROLL_TOKEN}
EOF
sudo systemctl start ziti-router.service
systemd-run --wait --quiet --service-type=oneshot --property=TimeoutStartSec=20s systemctl is-active ziti-router.service
sudo systemd-run --wait --quiet --service-type=oneshot --property=TimeoutStartSec=20s systemctl is-active ziti-router.service
if [[ $(ziti edge list edge-routers -j | jq '.data[0].isOnline') == "true" ]]
then
Expand Down

0 comments on commit 6de1fce

Please sign in to comment.