Skip to content

Commit

Permalink
Merge branch 'master' into update-yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
wdolinar authored Oct 31, 2024
2 parents c61b978 + 1d45191 commit 37b793f
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/XmsInterp-CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [macos-latest]
platform: [macos-13]
python-version: ['3.10']
build_type: [Release, Debug]

Expand Down Expand Up @@ -77,6 +77,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 @@ -129,7 +133,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@v1
uses: actions/upload-artifact@v4
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 @@ -183,7 +187,7 @@ jobs:
CONAN_BUILD_TYPES: ${{ matrix.build_type }}
CONAN_GCC_VERSIONS: ${{ matrix.compiler-version }}
CONAN_DOCKER_IMAGE: docker.aquaveo.com/aquaveo/conan-docker/conan-gcc${{ matrix.compiler-version }}-py${{ matrix.python-version }}:latest
CONAN_PIP_INSTALL: 'conan-package-tools==0.35.1'
CONAN_PIP_INSTALL: 'conan-package-tools==0.35.1 numpy==1.26.4'
CONAN_PIP_PACKAGE: 'conan==1.41.0'
# Aquapi Variables
AQUAPI_USERNAME: ${{ secrets.AQUAPI_USERNAME_SECRET }}
Expand Down Expand Up @@ -257,7 +261,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@v1
uses: actions/upload-artifact@v4
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 @@ -380,7 +384,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@v1
uses: actions/upload-artifact@v4
with:
name: ${{ env.MATRIX_NAME }}
path: ${{ github.workspace }}/${{ env.MATRIX_NAME }}.tar.gz
Expand Down

0 comments on commit 37b793f

Please sign in to comment.