Skip to content

Commit

Permalink
Adding steps for handling removal/reinstall of packages
Browse files Browse the repository at this point in the history
  • Loading branch information
djpolygon committed Jan 29, 2025
1 parent 59a06d5 commit c4f5254
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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

0 comments on commit c4f5254

Please sign in to comment.