Skip to content

Commit 87327ca

Browse files
committed
ci: fix github workflows: run on cpu
1 parent 530e668 commit 87327ca

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/static-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
- name: Install the project
2222
run:
23-
bash scripts/install.sh -m detectron2 --no-weights
23+
uv run bash scripts/install_uv.sh -m detectron2 --no-weights --cpu
2424
uv sync --group=doc
2525

2626

.github/workflows/static-test-install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ jobs:
1717

1818
- name: install detectron2 and project with pip for test
1919
run: |
20-
bash scripts/install.sh -m detectron2 --no-weights
20+
bash scripts/install.sh -m detectron2 --no-weights --cpu
2121

.github/workflows/static-test-install_uv.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ jobs:
1717

1818
- name: install detectron2 and project with uv
1919
run: |
20-
uv run bash scripts/install_uv.sh -m detectron2 --no-weights
20+
uv run bash scripts/install_uv.sh -m detectron2 --no-weights --cpu
2121

0 commit comments

Comments
 (0)