From 0349cabef36c720457509e31d659f8d04e0740da Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Thu, 30 Sep 2021 09:31:33 -0400 Subject: [PATCH] tweak the ci runners --- .github/workflows/build.yml | 6 +++--- .github/workflows/clippy.yml | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9c13f18..4ef8fab 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,9 +21,9 @@ jobs: - name: Install Raylib deps if: runner.os == 'Linux' run: sudo apt-get update && sudo apt-get install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev -y - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable + # - uses: actions-rs/toolchain@v1 + # with: + # toolchain: stable - uses: actions-rs/cargo@v1 with: command: build diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 6010bf2..d698018 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -6,6 +6,7 @@ jobs: steps: - uses: actions/checkout@v1 - run: rustup component add clippy + - run: sudo apt-get update && sudo apt-get install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev -y - uses: actions-rs/clippy-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }}