From 2d1791ec2b6633609e102701db55d52407548480 Mon Sep 17 00:00:00 2001 From: Tom Andersson Date: Wed, 11 Oct 2023 16:03:29 +0100 Subject: [PATCH] Remov MacOS from CI (see https://github.com/tom-andersson/deepsensor/issues/33#issuecomment-1757712994) --- .github/workflows/tests.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c9793bb7..3a092a4b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest] + os: [ubuntu-latest] python-version: ['3.8', '3.11'] steps: @@ -18,17 +18,19 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - - name: Delete huge unnecessary folders + - name: Delete huge unnecessary folders, and clean apt cache run: | - rm -rf /usr/share/dotnet/ - rm -rf /opt/ghc/ - rm -rf /usr/local/share/boost/ + rm -rf /opt/hostedtoolcache + rm -rf /usr/share/dotnet + rm -rf /opt/ghc + rm -rf "$AGENT_TOOLSDIRECTORY" + sudo apt-get clean shell: bash - name: Print space run: df -h - name: Install dependencies run: | - python3 -m pip install --upgrade pip + python -m pip install --upgrade pip pip install -r requirements.txt pip install -r requirements.dev.txt - name: Test with tox