Skip to content

Commit

Permalink
Fixup nightly build system check
Browse files Browse the repository at this point in the history
Use different archive names based on the server version, so that they
don't conflict when running the nightly matrix
  • Loading branch information
HoloRin committed Sep 13, 2023
1 parent 1858457 commit 9ffb3c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/check-build-system-equivalence.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: UPLOAD package-generic-unix.tar.xz
uses: actions/upload-artifact@v3.1.3
with:
name: bazel-package-generic-unix.tar.xz
name: bazel-package-generic-unix-${{ env.VERSION }}.tar.xz
path: ${{ env.archives_dir }}/package-generic-unix.tar.xz
if-no-files-found: error

Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
- name: UPLOAD package-generic-unix.tar.xz
uses: actions/upload-artifact@v3.1.3
with:
name: make-package-generic-unix.tar.xz
name: make-package-generic-unix-${{ env.VERSION }}.tar.xz
path: PACKAGES/rabbitmq-server-generic-unix-*.tar.xz
if-no-files-found: error

Expand All @@ -124,11 +124,11 @@ jobs:
- name: DOWNLOAD bazel-package-generic-unix.tar.xz
uses: actions/download-artifact@v3
with:
name: bazel-package-generic-unix.tar.xz
name: bazel-package-generic-unix-${{ env.VERSION }}.tar.xz
- name: DOWNLOAD make-package-generic-unix.tar.xz
uses: actions/download-artifact@v3
with:
name: make-package-generic-unix.tar.xz
name: make-package-generic-unix-${{ env.VERSION }}.tar.xz
- name: EXPAND & COMPARE
run: |
mkdir bazel
Expand Down

0 comments on commit 9ffb3c1

Please sign in to comment.