Skip to content

chore: test on more platforms #2013

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@ jobs:
# Disable telemetry.
ENVD_ANALYTICS: false
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04]
os: [ ubuntu-24.04, ubuntu-24.04-arm ]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
Expand All @@ -83,14 +84,16 @@ jobs:
with:
name: coverage-out
path: coverage.out
overwrite: true
e2e-cli:
name: e2e-cli
env:
# Disable telemetry.
ENVD_ANALYTICS: false
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
os: [ ubuntu-22.04, ubuntu-22.04-arm ]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
Expand All @@ -110,14 +113,16 @@ jobs:
with:
name: e2e-cli-coverage-out
path: e2e-cli-coverage.out
overwrite: true
e2e-lang:
name: e2e-lang
env:
# Disable telemetry.
ENVD_ANALYTICS: false
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
os: [ ubuntu-22.04, ubuntu-22.04-arm ]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
Expand All @@ -137,14 +142,16 @@ jobs:
with:
name: e2e-lang-coverage-out
path: e2e-lang-coverage.out
overwrite: true
build:
name: build
env:
# Disable telemetry.
ENVD_ANALYTICS: false
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, macos-latest]
os: [ ubuntu-24.04, ubuntu-24.04-arm, macos-13, macos-15 ]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
Expand Down
24 changes: 19 additions & 5 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ jobs:
name: build
if: github.repository == 'tensorchord/envd'
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest ]
os: [ ubuntu-24.04, ubuntu-24.04-arm, macos-13, macos-15 ]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
Expand All @@ -54,8 +55,9 @@ jobs:
# Disable telemetry.
ENVD_ANALYTICS: false
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
os: [ ubuntu-24.04, ubuntu-24.04-arm ]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
Expand All @@ -76,7 +78,11 @@ jobs:
env:
# Disable telemetry.
ENVD_ANALYTICS: false
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
os: [ ubuntu-24.04, ubuntu-24.04-arm ]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
uses: actions/checkout@v4
Expand All @@ -96,7 +102,11 @@ jobs:
env:
# Disable telemetry.
ENVD_ANALYTICS: false
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
os: [ ubuntu-24.04, ubuntu-24.04-arm ]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
uses: actions/checkout@v4
Expand All @@ -116,7 +126,11 @@ jobs:
env:
# Disable telemetry.
ENVD_ANALYTICS: false
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
os: [ ubuntu-24.04, ubuntu-24.04-arm ]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
uses: actions/checkout@v4
Expand Down
Loading