Skip to content
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

Test Python and OS matrices #321

Closed
wants to merge 37 commits into from
Closed
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
a25fe7f
Test Python, OS matrices
glenn-jocher Jul 7, 2023
71b25a6
Update ci.yaml
glenn-jocher Jul 7, 2023
13fce36
Merge branch 'master' into ci_matrix_tests
glenn-jocher Jul 22, 2023
49492df
Merge branch 'master' into ci_matrix_tests
glenn-jocher Aug 8, 2023
cb8778b
Merge branch 'master' into ci_matrix_tests
glenn-jocher Aug 12, 2023
0cd83a1
Merge branch 'main' into ci_matrix_tests
glenn-jocher Sep 2, 2023
7ff6cb5
Merge branch 'main' into ci_matrix_tests
glenn-jocher Sep 5, 2023
769b96e
Update ci.yaml
glenn-jocher Sep 10, 2023
8190242
Merge branch 'main' into ci_matrix_tests
glenn-jocher Sep 10, 2023
c85f4f2
Merge branch 'main' into ci_matrix_tests
glenn-jocher Sep 12, 2023
bf0530a
Merge branch 'main' into ci_matrix_tests
glenn-jocher Oct 6, 2023
986dfff
Merge branch 'main' into ci_matrix_tests
glenn-jocher Nov 2, 2023
5b015b9
Merge branch 'main' into ci_matrix_tests
glenn-jocher Nov 7, 2023
e73aeb6
Merge branch 'main' into ci_matrix_tests
glenn-jocher Nov 23, 2023
e976e91
Merge branch 'main' into ci_matrix_tests
glenn-jocher Jan 1, 2024
938da21
Merge branch 'main' into ci_matrix_tests
glenn-jocher Jan 6, 2024
74c9ac8
Merge branch 'main' into ci_matrix_tests
glenn-jocher Jan 8, 2024
19cec7e
Merge branch 'main' into ci_matrix_tests
glenn-jocher Jan 12, 2024
c916ffd
Merge branch 'main' into ci_matrix_tests
glenn-jocher Jan 17, 2024
91f460e
Merge branch 'main' into ci_matrix_tests
glenn-jocher Jan 21, 2024
f175dda
Merge branch 'main' into ci_matrix_tests
glenn-jocher Feb 1, 2024
caf88cf
Merge branch 'main' into ci_matrix_tests
glenn-jocher Feb 8, 2024
fe44966
Update ci.yaml
glenn-jocher Feb 18, 2024
7ab5002
Test hub-sdk develop branch
glenn-jocher Feb 21, 2024
8a8f834
Update ci.yaml
glenn-jocher Feb 21, 2024
b967a92
Update ci.yaml
glenn-jocher Feb 21, 2024
98f7870
Merge branch 'main' into ci_matrix_tests
glenn-jocher Feb 22, 2024
154311a
Update ci.yaml
glenn-jocher Mar 1, 2024
1704c27
Merge branch 'main' into ci_matrix_tests
glenn-jocher Mar 4, 2024
7fdea20
Merge branch 'main' into ci_matrix_tests
glenn-jocher Mar 24, 2024
71dc950
Merge branch 'main' into ci_matrix_tests
glenn-jocher Apr 16, 2024
456aba5
Merge branch 'main' into ci_matrix_tests
glenn-jocher Apr 28, 2024
7672152
Merge branch 'main' into ci_matrix_tests
glenn-jocher May 17, 2024
300b506
Merge branch 'main' into ci_matrix_tests
glenn-jocher Jun 1, 2024
0de78df
Merge branch 'main' into ci_matrix_tests
glenn-jocher Jun 23, 2024
9108311
Merge branch 'main' into ci_matrix_tests
glenn-jocher Jul 11, 2024
56f7420
Merge branch 'main' into ci_matrix_tests
glenn-jocher Jul 24, 2024
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: 12 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,18 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
max-parallel: 1
matrix:
os: [ubuntu-latest]
python-version: ["3.11"]
timeout-minutes: 60
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
include: # macos-14 on M1 runners only supported for Python>=3.10
- os: macos-14
python-version: "3.10"
- os: macos-14
python-version: "3.11"
- os: macos-14
python-version: "3.12"
timeout-minutes: 180
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand All @@ -30,6 +38,7 @@ jobs:
run: |
python -m pip install --upgrade pip wheel
pip install ultralytics --extra-index-url https://download.pytorch.org/whl/cpu
# pip install ultralytics git+https://github.com/ultralytics/hub-sdk.git@staging --extra-index-url https://download.pytorch.org/whl/cpu
- name: Check environment
run: |
yolo checks
Expand Down
Loading