Skip to content

chore: update cmake to 3.28.1 #89

chore: update cmake to 3.28.1

chore: update cmake to 3.28.1 #89

Workflow file for this run

name: CI
on:
push:
branches: ["*"]
pull_request:
branches: ["*"]
env:
BUILD_TYPE: Release
PYTHONUNBUFFERED: 1
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- macos-11
- macos-12
- macos-13
- ubuntu-20.04
- ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: venv
key: ${{ matrix.os }}-venv-${{ hashFiles('**/requirements.txt') }}
- name: Build
run: ./script/cibuild.py
build-windows:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- windows-2019
- windows-2022
arch:
- x64
- x86
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: venv
key: ${{ matrix.os }}-${{ matrix.arch }}-venv-${{ hashFiles('**/requirements.txt') }}
- name: Build
run: py -3 .\script\run-in-vsenv.py --arch ${{ matrix.arch }} py -3 .\script\cibuild.py