From 48ec7510f9e20dc45c0dc863bbcc28abb44a7c5a Mon Sep 17 00:00:00 2001 From: Kevin Stillhammer Date: Tue, 18 Mar 2025 19:33:51 +0100 Subject: [PATCH] Merge test and test-cache --- .github/workflows/test-cache.yml | 239 ------------------------------- .github/workflows/test.yml | 236 ++++++++++++++++++++++++++++++ 2 files changed, 236 insertions(+), 239 deletions(-) delete mode 100644 .github/workflows/test-cache.yml diff --git a/.github/workflows/test-cache.yml b/.github/workflows/test-cache.yml deleted file mode 100644 index c057eeb..0000000 --- a/.github/workflows/test-cache.yml +++ /dev/null @@ -1,239 +0,0 @@ -name: "test-cache" -on: - workflow_dispatch: - pull_request: - branches: - - main - push: - branches: - - main - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -permissions: - contents: read - -jobs: - test-setup-cache: - runs-on: ${{ matrix.os }} - strategy: - matrix: - enable-cache: [ "true", "false", "auto" ] - os: [ "ubuntu-latest", "selfhosted-ubuntu-arm64", "windows-latest" ] - steps: - - uses: actions/checkout@v4 - - name: Setup with cache - uses: ./ - with: - enable-cache: ${{ matrix.enable-cache }} - cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}-test-setup-cache-${{ matrix.os }}-${{ matrix.enable-cache }} - - run: uv sync - working-directory: __tests__/fixtures/uv-project - shell: bash - test-restore-cache: - runs-on: ${{ matrix.os }} - strategy: - matrix: - enable-cache: [ "true", "false", "auto" ] - os: [ "ubuntu-latest", "selfhosted-ubuntu-arm64", "windows-latest" ] - needs: test-setup-cache - steps: - - uses: actions/checkout@v4 - - name: Restore with cache - id: restore - uses: ./ - with: - enable-cache: ${{ matrix.enable-cache }} - cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}-test-setup-cache-${{ matrix.os }}-${{ matrix.enable-cache }} - - name: Cache was hit - if: ${{ matrix.enable-cache == 'true' || (matrix.enable-cache == 'auto' && matrix.os == 'ubuntu-latest') }} - run: | - if [ "$CACHE_HIT" != "true" ]; then - exit 1 - fi - env: - CACHE_HIT: ${{ steps.restore.outputs.cache-hit }} - shell: bash - - name: Cache was not hit - if: ${{ matrix.enable-cache == 'false' || (matrix.enable-cache == 'auto' && matrix.os == 'selfhosted-ubuntu-arm64') }} - run: | - if [ "$CACHE_HIT" == "true" ]; then - exit 1 - fi - env: - CACHE_HIT: ${{ steps.restore.outputs.cache-hit }} - shell: bash - - run: uv sync - working-directory: __tests__/fixtures/uv-project - shell: bash - test-setup-cache-requirements-txt: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Setup with cache - uses: ./ - with: - enable-cache: true - cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}-test-setup-cache-requirements-txt - - run: | - uv venv - uv pip install -r requirements.txt - working-directory: __tests__/fixtures/requirements-txt-project - test-restore-cache-requirements-txt: - runs-on: ubuntu-latest - needs: test-setup-cache - steps: - - uses: actions/checkout@v4 - - name: Restore with cache - id: restore - uses: ./ - with: - enable-cache: true - cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}-test-setup-cache-requirements-txt - - name: Cache was hit - run: | - if [ "$CACHE_HIT" != "true" ]; then - exit 1 - fi - env: - CACHE_HIT: ${{ steps.restore.outputs.cache-hit }} - - run: | - uv venv - uv pip install -r requirements.txt - working-directory: __tests__/fixtures/requirements-txt-project - - test-setup-cache-dependency-glob: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Setup with cache - uses: ./ - with: - enable-cache: true - cache-dependency-glob: | - __tests__/fixtures/uv-project/uv.lock - **/pyproject.toml - cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}-test-setup-cache-dependency-glob - - run: uv sync - working-directory: __tests__/fixtures/uv-project - test-restore-cache-dependency-glob: - runs-on: ubuntu-latest - needs: test-setup-cache-dependency-glob - steps: - - uses: actions/checkout@v4 - - name: Change pyproject.toml - run: | - echo '[tool.uv]' >> __tests__/fixtures/uv-project/pyproject.toml - echo 'dev-dependencies = []' >> __tests__/fixtures/uv-project/pyproject.toml - - name: Restore with cache - id: restore - uses: ./ - with: - enable-cache: true - cache-dependency-glob: | - __tests__/fixtures/uv-project/uv.lock - **/pyproject.toml - cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}-test-setup-cache-dependency-glob - ignore-nothing-to-cache: true - - name: Cache was not hit - run: | - if [ "$CACHE_HIT" == "true" ]; then - exit 1 - fi - env: - CACHE_HIT: ${{ steps.restore.outputs.cache-hit }} - - test-setup-cache-local: - runs-on: selfhosted-ubuntu-arm64 - steps: - - uses: actions/checkout@v4 - - name: Setup with cache - uses: ./ - with: - enable-cache: true - cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}-test-setup-cache-local - cache-local-path: /tmp/uv-cache - - run: uv sync - working-directory: __tests__/fixtures/uv-project - test-restore-cache-local: - runs-on: selfhosted-ubuntu-arm64 - needs: test-setup-cache-local - steps: - - uses: actions/checkout@v4 - - name: Restore with cache - id: restore - uses: ./ - with: - enable-cache: true - cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}-test-setup-cache-local - cache-local-path: /tmp/uv-cache - - name: Cache was hit - run: | - if [ "$CACHE_HIT" != "true" ]; then - exit 1 - fi - env: - CACHE_HIT: ${{ steps.restore.outputs.cache-hit }} - - run: uv sync - working-directory: __tests__/fixtures/uv-project - - test-tilde-expansion-cache-local-path: - runs-on: selfhosted-ubuntu-arm64 - steps: - - uses: actions/checkout@v4 - - name: Create cache directory - run: mkdir -p ~/uv-cache - shell: bash - - name: Setup with cache - uses: ./ - with: - cache-local-path: ~/uv-cache/cache-local-path - - run: uv sync - working-directory: __tests__/fixtures/uv-project - - test-tilde-expansion-cache-dependency-glob: - runs-on: selfhosted-ubuntu-arm64 - steps: - - uses: actions/checkout@v4 - - name: Create cache directory - run: mkdir -p ~/uv-cache - shell: bash - - name: Create cache dependency glob file - run: touch ~/uv-cache.glob - shell: bash - - name: Setup with cache - uses: ./ - with: - enable-cache: true - cache-local-path: ~/uv-cache/cache-dependency-glob - cache-dependency-glob: "~/uv-cache.glob" - - run: uv sync - working-directory: __tests__/fixtures/uv-project - - cleanup-tilde-expansion-tests: - needs: - - test-tilde-expansion-cache-local-path - - test-tilde-expansion-cache-dependency-glob - runs-on: selfhosted-ubuntu-arm64 - steps: - - name: Remove cache directory - run: rm -rf ~/uv-cache - shell: bash - - name: Remove cache dependency glob file - run: rm -f ~/uv-cache.glob - shell: bash - - test-no-python-version: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Fake pyproject.toml at root - run: cp __tests__/fixtures/old-python-constraint-project/pyproject.toml pyproject.toml - - name: Setup with cache - uses: ./ - with: - enable-cache: true - - run: uv sync - working-directory: __tests__/fixtures/old-python-constraint-project diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e83e443..40cd065 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,6 +32,7 @@ jobs: - name: Make sure no changes from linters are detected run: | git diff --exit-code || (echo "::error::Please run 'npm run all' to fix the issues" && exit 1) + test-default-version: runs-on: ${{ matrix.os }} strategy: @@ -44,6 +45,7 @@ jobs: - run: uv sync working-directory: __tests__/fixtures/uv-project shell: bash + test-specific-version: runs-on: ubuntu-latest strategy: @@ -57,6 +59,7 @@ jobs: version: ${{ matrix.uv-version }} - run: uv sync working-directory: __tests__/fixtures/uv-project + test-semver-range: runs-on: ubuntu-latest steps: @@ -73,6 +76,7 @@ jobs: fi env: UV_VERSION: ${{ steps.setup-uv.outputs.uv-version }} + test-pyproject-file-version: runs-on: ubuntu-latest steps: @@ -89,6 +93,7 @@ jobs: fi env: UV_VERSION: ${{ steps.setup-uv.outputs.uv-version }} + test-malformed-pyproject-file-fallback: runs-on: ubuntu-latest steps: @@ -100,6 +105,7 @@ jobs: pyproject-file: "__tests__/fixtures/malformed-pyproject-toml-project/pyproject.toml" - run: uv sync working-directory: __tests__/fixtures/uv-project + test-uv-file-version: runs-on: ubuntu-latest steps: @@ -117,6 +123,7 @@ jobs: fi env: UV_VERSION: ${{ steps.setup-uv.outputs.uv-version }} + test-checksum: runs-on: ${{ matrix.inputs.os }} strategy: @@ -135,6 +142,7 @@ jobs: checksum: ${{ matrix.inputs.checksum }} - run: uv sync working-directory: __tests__/fixtures/uv-project + test-with-explicit-token: runs-on: ubuntu-latest steps: @@ -145,6 +153,7 @@ jobs: github-token: ${{ secrets.GITHUB_TOKEN }} - run: uv sync working-directory: __tests__/fixtures/uv-project + test-uvx: runs-on: ubuntu-latest steps: @@ -152,6 +161,7 @@ jobs: - name: Install default version uses: ./ - run: uvx ruff --version + test-tool-install: runs-on: ${{ matrix.os }} strategy: @@ -169,6 +179,7 @@ jobs: uses: ./ - run: uv tool install ruff - run: ruff --version + test-tilde-expansion-tool-dirs: runs-on: selfhosted-ubuntu-arm64 steps: @@ -188,6 +199,7 @@ jobs: echo "UV_TOOL_DIR does not contain /home/ubuntu/tool-dir: $UV_TOOL_DIR" exit 1 fi + test-python-version: runs-on: ubuntu-latest strategy: @@ -216,6 +228,7 @@ jobs: exit 1 fi shell: bash + test-musl: runs-on: ubuntu-latest container: alpine @@ -225,3 +238,226 @@ jobs: uses: ./ - run: uv sync working-directory: __tests__/fixtures/uv-project + + test-setup-cache: + runs-on: ${{ matrix.os }} + strategy: + matrix: + enable-cache: [ "true", "false", "auto" ] + os: [ "ubuntu-latest", "selfhosted-ubuntu-arm64", "windows-latest" ] + steps: + - uses: actions/checkout@v4 + - name: Setup with cache + uses: ./ + with: + enable-cache: ${{ matrix.enable-cache }} + cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}-test-setup-cache-${{ matrix.os }}-${{ matrix.enable-cache }} + - run: uv sync + working-directory: __tests__/fixtures/uv-project + shell: bash + test-restore-cache: + runs-on: ${{ matrix.os }} + strategy: + matrix: + enable-cache: [ "true", "false", "auto" ] + os: [ "ubuntu-latest", "selfhosted-ubuntu-arm64", "windows-latest" ] + needs: test-setup-cache + steps: + - uses: actions/checkout@v4 + - name: Restore with cache + id: restore + uses: ./ + with: + enable-cache: ${{ matrix.enable-cache }} + cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}-test-setup-cache-${{ matrix.os }}-${{ matrix.enable-cache }} + - name: Cache was hit + if: ${{ matrix.enable-cache == 'true' || (matrix.enable-cache == 'auto' && matrix.os == 'ubuntu-latest') }} + run: | + if [ "$CACHE_HIT" != "true" ]; then + exit 1 + fi + env: + CACHE_HIT: ${{ steps.restore.outputs.cache-hit }} + shell: bash + - name: Cache was not hit + if: ${{ matrix.enable-cache == 'false' || (matrix.enable-cache == 'auto' && matrix.os == 'selfhosted-ubuntu-arm64') }} + run: | + if [ "$CACHE_HIT" == "true" ]; then + exit 1 + fi + env: + CACHE_HIT: ${{ steps.restore.outputs.cache-hit }} + shell: bash + - run: uv sync + working-directory: __tests__/fixtures/uv-project + shell: bash + + test-setup-cache-requirements-txt: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Setup with cache + uses: ./ + with: + enable-cache: true + cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}-test-setup-cache-requirements-txt + - run: | + uv venv + uv pip install -r requirements.txt + working-directory: __tests__/fixtures/requirements-txt-project + test-restore-cache-requirements-txt: + runs-on: ubuntu-latest + needs: test-setup-cache + steps: + - uses: actions/checkout@v4 + - name: Restore with cache + id: restore + uses: ./ + with: + enable-cache: true + cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}-test-setup-cache-requirements-txt + - name: Cache was hit + run: | + if [ "$CACHE_HIT" != "true" ]; then + exit 1 + fi + env: + CACHE_HIT: ${{ steps.restore.outputs.cache-hit }} + - run: | + uv venv + uv pip install -r requirements.txt + working-directory: __tests__/fixtures/requirements-txt-project + + test-setup-cache-dependency-glob: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Setup with cache + uses: ./ + with: + enable-cache: true + cache-dependency-glob: | + __tests__/fixtures/uv-project/uv.lock + **/pyproject.toml + cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}-test-setup-cache-dependency-glob + - run: uv sync + working-directory: __tests__/fixtures/uv-project + test-restore-cache-dependency-glob: + runs-on: ubuntu-latest + needs: test-setup-cache-dependency-glob + steps: + - uses: actions/checkout@v4 + - name: Change pyproject.toml + run: | + echo '[tool.uv]' >> __tests__/fixtures/uv-project/pyproject.toml + echo 'dev-dependencies = []' >> __tests__/fixtures/uv-project/pyproject.toml + - name: Restore with cache + id: restore + uses: ./ + with: + enable-cache: true + cache-dependency-glob: | + __tests__/fixtures/uv-project/uv.lock + **/pyproject.toml + cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}-test-setup-cache-dependency-glob + ignore-nothing-to-cache: true + - name: Cache was not hit + run: | + if [ "$CACHE_HIT" == "true" ]; then + exit 1 + fi + env: + CACHE_HIT: ${{ steps.restore.outputs.cache-hit }} + + test-setup-cache-local: + runs-on: selfhosted-ubuntu-arm64 + steps: + - uses: actions/checkout@v4 + - name: Setup with cache + uses: ./ + with: + enable-cache: true + cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}-test-setup-cache-local + cache-local-path: /tmp/uv-cache + - run: uv sync + working-directory: __tests__/fixtures/uv-project + test-restore-cache-local: + runs-on: selfhosted-ubuntu-arm64 + needs: test-setup-cache-local + steps: + - uses: actions/checkout@v4 + - name: Restore with cache + id: restore + uses: ./ + with: + enable-cache: true + cache-suffix: ${{ github.run_id }}-${{ github.run_attempt }}-test-setup-cache-local + cache-local-path: /tmp/uv-cache + - name: Cache was hit + run: | + if [ "$CACHE_HIT" != "true" ]; then + exit 1 + fi + env: + CACHE_HIT: ${{ steps.restore.outputs.cache-hit }} + - run: uv sync + working-directory: __tests__/fixtures/uv-project + + test-tilde-expansion-cache-local-path: + runs-on: selfhosted-ubuntu-arm64 + steps: + - uses: actions/checkout@v4 + - name: Create cache directory + run: mkdir -p ~/uv-cache + shell: bash + - name: Setup with cache + uses: ./ + with: + cache-local-path: ~/uv-cache/cache-local-path + - run: uv sync + working-directory: __tests__/fixtures/uv-project + + test-tilde-expansion-cache-dependency-glob: + runs-on: selfhosted-ubuntu-arm64 + steps: + - uses: actions/checkout@v4 + - name: Create cache directory + run: mkdir -p ~/uv-cache + shell: bash + - name: Create cache dependency glob file + run: touch ~/uv-cache.glob + shell: bash + - name: Setup with cache + uses: ./ + with: + enable-cache: true + cache-local-path: ~/uv-cache/cache-dependency-glob + cache-dependency-glob: "~/uv-cache.glob" + - run: uv sync + working-directory: __tests__/fixtures/uv-project + + cleanup-tilde-expansion-tests: + needs: + - test-tilde-expansion-cache-local-path + - test-tilde-expansion-cache-dependency-glob + runs-on: selfhosted-ubuntu-arm64 + steps: + - name: Remove cache directory + run: rm -rf ~/uv-cache + shell: bash + - name: Remove cache dependency glob file + run: rm -f ~/uv-cache.glob + shell: bash + + test-no-python-version: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Fake pyproject.toml at root + run: cp __tests__/fixtures/old-python-constraint-project/pyproject.toml pyproject.toml + - name: Setup with cache + uses: ./ + with: + enable-cache: true + - run: uv sync + working-directory: __tests__/fixtures/old-python-constraint-project