We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1b632a commit 27281bbCopy full SHA for 27281bb
2 files changed
.github/workflows/static-gh-pages.yml
@@ -20,7 +20,7 @@ jobs:
20
- name: install dependencies pip
21
run: |
22
python3 -m pip install -U pip
23
- bash scripts/install.sh --cpu
+ bash scripts/install.sh --cpu -m detectron2 --no-weights
24
python3 -m pip install .[doc]
25
26
- name: make docs
.github/workflows/static-install-test.yml
@@ -0,0 +1,20 @@
1
+name: basic install
2
+
3
+on: [push, pull_request]
4
+jobs:
5
+ docs_to_gh-pages:
6
+ runs-on: ubuntu-latest
7
+ name: basic install of compressai-vision (torch cpu)
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ with:
11
+ submodules: recursive
12
+ - name: Setup Python
13
+ uses: actions/setup-python@v2
14
15
+ python-version: '3.8'
16
17
+ - name: install dependencies pip
18
+ run: |
19
+ python3 -m pip install -U pip
+ bash scripts/install.sh -m detectron2 --no-weights
0 commit comments