From 518e3a6abec1a8110b80413cfae21033aff9c615 Mon Sep 17 00:00:00 2001 From: Joey Hafner Date: Fri, 25 Oct 2024 12:06:04 -0700 Subject: [PATCH] #16 Disable hacking#show-changes, get package index before attempting to install iputils-ping --- .gitea/workflows/hacking.yaml | 6 +++--- .gitea/workflows/vyos-deploy.yaml | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/hacking.yaml b/.gitea/workflows/hacking.yaml index d6450d98..48b97f40 100644 --- a/.gitea/workflows/hacking.yaml +++ b/.gitea/workflows/hacking.yaml @@ -15,7 +15,7 @@ jobs: - name: List files in the repository run: | ls ${{ gitea.workspace }} - - name: Show changes in the most recent commit - run: | - git show HEAD^1 + # - name: Show changes in the most recent commit + # run: | + # git show HEAD^1 - run: echo "🍏 This job's status is ${{ gitea.status }}." \ No newline at end of file diff --git a/.gitea/workflows/vyos-deploy.yaml b/.gitea/workflows/vyos-deploy.yaml index fea42ccb..30724ebc 100644 --- a/.gitea/workflows/vyos-deploy.yaml +++ b/.gitea/workflows/vyos-deploy.yaml @@ -16,7 +16,8 @@ jobs: uses: actions/checkout@v4 - name: Check network connectivity to host run: | - sudo apt-get install -y iputils + sudo apt-get update &&\ + sudo apt-get install -y iputils-ping ping -c 1 -t 1 -q 192.168.1.1 - name: Configure SSH run: |