From c4f52541ddef34cf979d0bbbc4c81455925eb538 Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Wed, 29 Jan 2025 10:12:10 -0600 Subject: [PATCH 1/3] Adding steps for handling removal/reinstall of packages --- .github/workflows/ci.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c2b4aa9..8b63473 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: steps: - uses: actions/checkout@v4 - uses: uraimo/run-on-arch-action@v2 - name: Install binary + name: Install binary (arm64/aarch64 install) with: arch: ${{ matrix.arch }} distro: ${{ matrix.distro }} @@ -40,10 +40,15 @@ jobs: # Mount the root directory as /artifacts in the container dockerRunArgs: | --volume "${PWD}:/artifacts" - + # Existing version run: | bash /artifacts/bor.sh v1.5.4 amoy sentry bash /artifacts/heimdall.sh v1.2.0 amoy sentry + # New Version + - name: new version test of install/removal (arm64/aarch64) + run: | + bash /artifacts/bor.sh v1.5.4 amoy sentry + bash /artifacts/heimdall.sh v1.2.0 amoy sentry install_amd64: runs-on: ${{ matrix.os }} @@ -54,7 +59,12 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Install binary + - name: Install binary(amd64/x86) + run: | + ./bor.sh v1.5.4 amoy sentry + ./heimdall.sh v1.2.0 amoy sentry + + - name: Install binary and test removal(amd64/x86) run: | ./bor.sh v1.5.4 amoy sentry ./heimdall.sh v1.2.0 amoy sentry \ No newline at end of file From 4ee11b78b2c52d33fa3271ddc3c4f142ae4ff98e Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Wed, 29 Jan 2025 10:20:40 -0600 Subject: [PATCH 2/3] Adding comment --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b63473..dcf623d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,11 +59,12 @@ jobs: steps: - uses: actions/checkout@v4 + # Existing version - name: Install binary(amd64/x86) run: | ./bor.sh v1.5.4 amoy sentry ./heimdall.sh v1.2.0 amoy sentry - + # New version - name: Install binary and test removal(amd64/x86) run: | ./bor.sh v1.5.4 amoy sentry From 6f9ba61a7ab1f6998449813d3cc54e2d6988cc04 Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Wed, 29 Jan 2025 10:28:09 -0600 Subject: [PATCH 3/3] Updating process in the docker flow for aarch64/arm64 --- .github/workflows/ci.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dcf623d..94bfd12 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,15 +40,13 @@ jobs: # Mount the root directory as /artifacts in the container dockerRunArgs: | --volume "${PWD}:/artifacts" - # Existing version run: | + # Existing Version + bash /artifacts/bor.sh v1.5.4 amoy sentry + bash /artifacts/heimdall.sh v1.2.0 amoy sentry + # New Version bash /artifacts/bor.sh v1.5.4 amoy sentry bash /artifacts/heimdall.sh v1.2.0 amoy sentry - # New Version - - name: new version test of install/removal (arm64/aarch64) - run: | - bash /artifacts/bor.sh v1.5.4 amoy sentry - bash /artifacts/heimdall.sh v1.2.0 amoy sentry install_amd64: runs-on: ${{ matrix.os }}