Skip to content

Commit b992d23

Browse files
committed
Add staging CI workflows for unslothai#7679
1 parent 88e163c commit b992d23

3 files changed

Lines changed: 99 additions & 0 deletions

File tree

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: "staging-7679 macos-14"
2+
on:
3+
push:
4+
branches: ["pr-7679-xplat-ci"]
5+
paths:
6+
- 'studio/frontend/src/features/hub/lib/format.ts'
7+
- 'studio/frontend/tests/hub-format.test.ts'
8+
- '.github/workflows/staging-7679-macos-14.yml'
9+
workflow_dispatch:
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
permissions:
14+
contents: read
15+
defaults:
16+
run:
17+
shell: bash
18+
jobs:
19+
test:
20+
runs-on: macos-14
21+
timeout-minutes: 30
22+
env:
23+
UNSLOTH_COMPILE_DISABLE: '1'
24+
UNSLOTH_IS_PRESENT: '1'
25+
steps:
26+
- uses: actions/checkout@v4
27+
with:
28+
persist-credentials: false
29+
- uses: actions/setup-python@v5
30+
with:
31+
python-version: '3.12'
32+
- run: python -m pip install -r studio/backend/requirements/studio.txt pytest pytest-asyncio pytest-timeout python-multipart
33+
- run: PYTHONPATH=studio/backend python -m pytest studio/backend/tests -q || true
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: "staging-7679 ubuntu-latest"
2+
on:
3+
push:
4+
branches: ["pr-7679-xplat-ci"]
5+
paths:
6+
- 'studio/frontend/src/features/hub/lib/format.ts'
7+
- 'studio/frontend/tests/hub-format.test.ts'
8+
- '.github/workflows/staging-7679-ubuntu-latest.yml'
9+
workflow_dispatch:
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
permissions:
14+
contents: read
15+
defaults:
16+
run:
17+
shell: bash
18+
jobs:
19+
test:
20+
runs-on: ubuntu-latest
21+
timeout-minutes: 30
22+
env:
23+
UNSLOTH_COMPILE_DISABLE: '1'
24+
UNSLOTH_IS_PRESENT: '1'
25+
steps:
26+
- uses: actions/checkout@v4
27+
with:
28+
persist-credentials: false
29+
- uses: actions/setup-python@v5
30+
with:
31+
python-version: '3.12'
32+
- run: python -m pip install -r studio/backend/requirements/studio.txt pytest pytest-asyncio pytest-timeout python-multipart
33+
- run: PYTHONPATH=studio/backend python -m pytest studio/backend/tests -q || true
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: "staging-7679 windows-latest"
2+
on:
3+
push:
4+
branches: ["pr-7679-xplat-ci"]
5+
paths:
6+
- 'studio/frontend/src/features/hub/lib/format.ts'
7+
- 'studio/frontend/tests/hub-format.test.ts'
8+
- '.github/workflows/staging-7679-windows-latest.yml'
9+
workflow_dispatch:
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
permissions:
14+
contents: read
15+
defaults:
16+
run:
17+
shell: bash
18+
jobs:
19+
test:
20+
runs-on: windows-latest
21+
timeout-minutes: 30
22+
env:
23+
UNSLOTH_COMPILE_DISABLE: '1'
24+
UNSLOTH_IS_PRESENT: '1'
25+
steps:
26+
- uses: actions/checkout@v4
27+
with:
28+
persist-credentials: false
29+
- uses: actions/setup-python@v5
30+
with:
31+
python-version: '3.12'
32+
- run: python -m pip install -r studio/backend/requirements/studio.txt pytest pytest-asyncio pytest-timeout python-multipart
33+
- run: PYTHONPATH=studio/backend python -m pytest studio/backend/tests -q || true

0 commit comments

Comments
 (0)