Github Actions CI: no more Docker clean or build

pull/148/head
Robert Sachunsky 2 weeks ago committed by GitHub
parent 45e3ab9692
commit df3510750c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -23,8 +23,6 @@ jobs:
sudo rm -rf "/usr/local/share/boost" sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY" sudo rm -rf "$AGENT_TOOLSDIRECTORY"
df -h df -h
docker rmi $(docker images -q)
df -h
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/cache@v4 - uses: actions/cache@v4
id: model_cache id: model_cache
@ -41,9 +39,7 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install .[OCR,plotting] make install EXTRAS=OCR,plotting
pip install -r requirements-test.txt make deps-test
- name: Test with pytest - name: Test with pytest
run: make test run: make test
- name: Test docker build
run: make docker

Loading…
Cancel
Save