Skip to content

Commit

Permalink
22209: Updates package name of GLIBC 2.28 build (#307)
Browse files Browse the repository at this point in the history
Necessary to avoid a naming conflict during releases between the two
Linux/amd64 builds.
  • Loading branch information
apbassett authored Nov 19, 2024
1 parent f8ef31b commit b334ac2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,12 @@ jobs:
- name: CMake Package
run: cmake --build --preset $PRESET --target package

- name: Rename Package
run: |
# Necessary so that there are no naming conflicts between the two amd64 packages (GLIBC 2.28/2.29) at release time,
# where GitHub does not allow a distinct "artifact name"
mv ./out/package/amalgam-*.tar.gz ./out/package/amalgam-${{ inputs.version }}-${{ matrix.preset.platform }}-${{ matrix.preset.arch }}-228.tar.gz
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -337,7 +343,7 @@ jobs:
- name: Extract Amalgam
run: |
mkdir ./amalgam
tar -xvf ./amalgam-${{ inputs.version }}-linux-amd64.tar.gz -C ./amalgam
tar -xvf ./amalgam-${{ inputs.version }}-linux-amd64-228.tar.gz -C ./amalgam
- name: Smoke test
run: |
Expand Down

0 comments on commit b334ac2

Please sign in to comment.