Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ on:

jobs:
smoke_test:
name: Smoke Test
name: Smoke Test (CMake v${{ matrix.cmake.version }})
runs-on: ubuntu-latest
container: swift:6.1-bookworm
strategy:
matrix:
cmake:
- url: "https://github.com/Kitware/CMake/releases/download/v3.22.6/cmake-3.22.6-linux-x86_64.tar.gz"
- version: 3.22.6
hash: 09e1b34026c406c5bf4d1b053eadb3a8519cb360e37547ebf4b70ab766d94fbc
- url: "https://github.com/Kitware/CMake/releases/download/v3.26.6/cmake-3.26.6-linux-x86_64.tar.gz"
- version: 3.26.6
hash: 2dd48ccd3e3d872ee4cc916f3f4e24812612421007e895f82bf9fc7e49831d62
- url: "https://github.com/Kitware/CMake/releases/download/v3.30.8/cmake-3.30.8-linux-x86_64.tar.gz"
- version: 3.30.8
hash: adc81f2944e6f86b44e86acea3abea1651ed7890206933484b8b74ac1280314f
steps:
- name: Clone Repo
Expand All @@ -34,7 +34,7 @@ jobs:
id: install-cmake
uses: ./swift-cmake-examples/.github/actions/cmake-action
with:
url: ${{ matrix.cmake.url }}
url: "https://github.com/Kitware/CMake/releases/download/v${{matrix.cmake.version}}/cmake-${{matrix.cmake.version}}-linux-x86_64.tar.gz"
hash: ${{ matrix.cmake.hash }}
- name: Run Tests
shell: bash
Expand Down