Skip to content

Commit

Permalink
Remove python version from build matrix
Browse files Browse the repository at this point in the history
Change-Id: I7072b648f6e567c1f83291b30a2284045837b298
  • Loading branch information
austinEng committed Oct 31, 2023
1 parent 7c8d632 commit 65aeaa3
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CMake build
name: CMake

on:
push:
Expand All @@ -25,7 +25,6 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]
build_type: [Release]
c_compiler: [gcc, clang, cl]
python-version: ["3.11"]
include:
- os: windows-latest
c_compiler: cl
Expand Down Expand Up @@ -67,10 +66,10 @@ jobs:
sudo apt update
sudo apt install libgl-dev libx11-xcb-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxext-dev wayland-protocols libwayland-dev libxkbcommon-dev
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: 3.11

- name: Fetch dependencies
run: python ./tools/fetch_dawn_dependencies.py --use-test-deps --shallow
Expand All @@ -82,7 +81,7 @@ jobs:
if: matrix.os == 'windows-latest'
uses: seanmiddleditch/gha-setup-vsdevenv@master

- name: Setup sccache
- name: Set up sccache
uses: mozilla-actions/[email protected]

- name: Configure CMake
Expand Down

0 comments on commit 65aeaa3

Please sign in to comment.