File tree 1 file changed +8
-6
lines changed
1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 13
13
strategy :
14
14
matrix :
15
15
os :
16
- - macos-latest
16
+ - macos-14 # arm64
17
+ - macos-13 # x64
17
18
- windows-latest
18
19
runs-on : ${{ matrix.os }}
19
20
env :
@@ -40,14 +41,15 @@ jobs:
40
41
- name : Run Tests with Coverage
41
42
run : |
42
43
pipenv run coverage run -m pytest --cov=./src --cov-report=xml
43
- - name : Upload Coverage Report
44
- uses : codecov/codecov-action@v2
45
- with :
46
- files : ./coverage.xml
47
44
48
45
python-tests-linux :
49
46
needs : Get-CI-Image-Tag
50
- runs-on : ubuntu-latest
47
+ strategy :
48
+ matrix :
49
+ os :
50
+ - ubuntu-24.04-arm # arm64-preview
51
+ - ubuntu-24.04 # x64
52
+ runs-on : ${{ matrix.os }}
51
53
container :
52
54
# using the same image which is used by opensearch-build team to build the OpenSearch Distribution
53
55
# this image tag is subject to change as more dependencies and updates will arrive over time
You can’t perform that action at this time.
0 commit comments