Skip to content

Commit 37b793f

Browse files
authored
Merge branch 'master' into update-yaml
2 parents c61b978 + 1d45191 commit 37b793f

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/XmsInterp-CI.yaml

+9-5
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
strategy:
5050
fail-fast: false
5151
matrix:
52-
platform: [macos-latest]
52+
platform: [macos-13]
5353
python-version: ['3.10']
5454
build_type: [Release, Debug]
5555

@@ -77,6 +77,10 @@ jobs:
7777
RELEASE_PYTHON: 'False'
7878

7979
steps:
80+
# Get Correct Version of Xcode
81+
- uses: maxim-lobanov/setup-xcode@v1
82+
with:
83+
xcode-version: 14.3.1
8084
# Checkout Sources
8185
- name: Checkout Source
8286
uses: actions/checkout@v2
@@ -129,7 +133,7 @@ jobs:
129133
run: |
130134
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
131135
- name: Add Artifact
132-
uses: actions/upload-artifact@v1
136+
uses: actions/upload-artifact@v4
133137
with:
134138
name: ${{ matrix.platform }}-Clang${{ matrix.compiler-version }}-${{ matrix.build_type }}
135139
path: ${{ github.workspace }}/${{ matrix.platform }}-Clang${{ matrix.compiler-version }}-${{ matrix.build_type }}.tar.gz
@@ -183,7 +187,7 @@ jobs:
183187
CONAN_BUILD_TYPES: ${{ matrix.build_type }}
184188
CONAN_GCC_VERSIONS: ${{ matrix.compiler-version }}
185189
CONAN_DOCKER_IMAGE: docker.aquaveo.com/aquaveo/conan-docker/conan-gcc${{ matrix.compiler-version }}-py${{ matrix.python-version }}:latest
186-
CONAN_PIP_INSTALL: 'conan-package-tools==0.35.1'
190+
CONAN_PIP_INSTALL: 'conan-package-tools==0.35.1 numpy==1.26.4'
187191
CONAN_PIP_PACKAGE: 'conan==1.41.0'
188192
# Aquapi Variables
189193
AQUAPI_USERNAME: ${{ secrets.AQUAPI_USERNAME_SECRET }}
@@ -257,7 +261,7 @@ jobs:
257261
run: |
258262
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
259263
- name: Add Artifact
260-
uses: actions/upload-artifact@v1
264+
uses: actions/upload-artifact@v4
261265
with:
262266
name: ${{ matrix.platform }}-Clang${{ matrix.compiler-version }}-${{ matrix.build_type }}
263267
path: ${{ github.workspace }}/${{ matrix.platform }}-GCC${{ matrix.compiler-version }}-${{ matrix.build_type }}.tar.gz
@@ -380,7 +384,7 @@ jobs:
380384
run: |
381385
tar czf ${{ github.workspace }}/${{ env.MATRIX_NAME }}.tar.gz ${{ env.CONAN_PATH }}/${{ env.LIBRARY_NAME }}/${{ env.XMS_VERSION }}/aquaveo/${{ env.CONAN_CHANNEL}}/package
382386
- name: Add Artifact
383-
uses: actions/upload-artifact@v1
387+
uses: actions/upload-artifact@v4
384388
with:
385389
name: ${{ env.MATRIX_NAME }}
386390
path: ${{ github.workspace }}/${{ env.MATRIX_NAME }}.tar.gz

0 commit comments

Comments
 (0)