From dfdb90e9a61705caad4e8032c1b95a2c1b264abb Mon Sep 17 00:00:00 2001 From: Austin Johnson Date: Wed, 21 Dec 2022 04:20:33 -0800 Subject: [PATCH] Remove installation of python with Windows actions (#2109) * Remove python3 install. Install ninja with pip. * Run actions on all branches. * Specify cargo jobs? * undo last commit --- .github/workflows/rust.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index ff8199d687..15b2d2caff 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -2,11 +2,9 @@ name: Rust on: push: - branches: [ master ] paths-ignore: - '**.md' pull_request: - branches: [ master ] paths-ignore: - '**.md' @@ -18,13 +16,7 @@ jobs: runs-on: windows-latest steps: - name: Ninja Install - uses: crazy-max/ghaction-chocolatey@v2 - with: - args: install ninja - - name: Python3 Install - uses: crazy-max/ghaction-chocolatey@v2 - with: - args: install python3 --params "/InstallAllUsers" + run: pip install ninja - uses: actions/checkout@v3 - name: Build run: cargo build --verbose