Skip to content

Commit

Permalink
Updated to version 4 of actions/upload-artifact.
Browse files Browse the repository at this point in the history
(cherry picked from commit 45c9042)
  • Loading branch information
wdolinar committed Oct 31, 2024
1 parent af85649 commit 53b9811
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/XmsCore-CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# MAC
# ----------------------------------------------------------------------------------------------
mac:
name: Clang-14.0 (${{ matrix.build_type }}, ${{ matrix.python-version }}, Macos)
name: Clang-14 (${{ matrix.build_type }}, ${{ matrix.python-version }}, Macos)
runs-on: ${{ matrix.platform }}

strategy:
Expand Down Expand Up @@ -73,6 +73,10 @@ jobs:
RELEASE_PYTHON: 'False'

steps:
# Get Correct Version of Xcode
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 14.3.1
# Checkout Sources
- name: Checkout Source
uses: actions/checkout@v2
Expand Down Expand Up @@ -125,7 +129,7 @@ jobs:
run: |
tar czf ${{ github.workspace }}/${{ matrix.platform }}-Clang${{ matrix.compiler-version }}-${{ matrix.build_type }}.tar.gz ${{ env.CONAN_PATH }}/${{ env.LIBRARY_NAME }}/${{ env.XMS_VERSION }}/aquaveo/${{ env.CONAN_CHANNEL}}/package
- name: Add Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v1
with:
name: ${{ matrix.platform }}-Clang${{ matrix.compiler-version }}-${{ matrix.build_type }}
path: ${{ github.workspace }}/${{ matrix.platform }}-Clang${{ matrix.compiler-version }}-${{ matrix.build_type }}.tar.gz
Expand Down Expand Up @@ -253,7 +257,7 @@ jobs:
run: |
tar czf ${{ github.workspace }}/${{ matrix.platform }}-GCC${{ matrix.compiler-version }}-${{ matrix.build_type }}.tar.gz ${{ env.CONAN_PATH }}/${{ env.LIBRARY_NAME }}/${{ env.XMS_VERSION }}/aquaveo/${{ env.CONAN_CHANNEL}}/package
- name: Add Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v1
with:
name: ${{ matrix.platform }}-Clang${{ matrix.compiler-version }}-${{ matrix.build_type }}
path: ${{ github.workspace }}/${{ matrix.platform }}-GCC${{ matrix.compiler-version }}-${{ matrix.build_type }}.tar.gz
Expand Down Expand Up @@ -376,7 +380,7 @@ jobs:
run: |
tar czf ${{ github.workspace }}/${{ env.MATRIX_NAME }}.tar.gz ${{ env.CONAN_PATH }}/${{ env.LIBRARY_NAME }}/${{ env.XMS_VERSION }}/aquaveo/${{ env.CONAN_CHANNEL}}/package
- name: Add Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v1
with:
name: ${{ env.MATRIX_NAME }}
path: ${{ github.workspace }}/${{ env.MATRIX_NAME }}.tar.gz
Expand Down

0 comments on commit 53b9811

Please sign in to comment.