Skip to content

Commit

Permalink
ci: remove macOS tests in GitHub CI
Browse files Browse the repository at this point in the history
* remove all macOS related tests from GitHub
* add timeout of setting up minikube environment in Python ETL test
  (allow manul retry)

Signed-off-by: Tony Chen <[email protected]>
  • Loading branch information
Nahemah1022 committed Feb 28, 2025
1 parent 993c58e commit 984854b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ jobs:
strategy:
matrix:
go-version: ['1.23.x']
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest]
# TODO: provide support for MacOS (revisit !7808)
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-python-authn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ jobs:
strategy:
matrix:
go-version: ['1.23.x']
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest]
# TODO: provide support for MacOS (revisit !7808)
python-version: ['3.8','3.9','3.10','3.11','3.12','3.13']
runs-on: ${{ matrix.os }}
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-python-etl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
container-runtime: docker
cpus: max
memory: max
timeout-minutes: 5

- name: Run AIStore in Minikube
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ jobs:
strategy:
matrix:
go-version: ['1.23.x']
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest]
# TODO: provide support for MacOS (revisit !7808)
python-version: ['3.8','3.9','3.10','3.11','3.12','3.13']
runs-on: ${{ matrix.os }}
steps:
Expand Down

0 comments on commit 984854b

Please sign in to comment.