From beb4ecb58139050ed21642b0be29bd13bc7746b3 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Thu, 3 Mar 2022 18:30:13 +0100 Subject: [PATCH] ci: Remove mentions of non-existant matrix variables --- .github/workflows/appservice.yml | 1 - .github/workflows/ci.yml | 6 ++---- .github/workflows/wasm.yml | 2 +- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/appservice.yml b/.github/workflows/appservice.yml index 980b082a3..8a88b44b6 100644 --- a/.github/workflows/appservice.yml +++ b/.github/workflows/appservice.yml @@ -43,7 +43,6 @@ jobs: uses: actions-rs/toolchain@v1 with: toolchain: ${{ matrix.rust || 'stable' }} - target: ${{ matrix.target }} profile: minimal override: true diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de2311cdf..c0f6aa657 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,7 +83,7 @@ jobs: name: ${{ matrix.name }} if: github.event_name == 'push' || !github.event.pull_request.draft - runs-on: ${{ matrix.os || 'ubuntu-latest' }} + runs-on: ubuntu-latest strategy: fail-fast: true matrix: @@ -129,8 +129,7 @@ jobs: - name: Install Rust uses: actions-rs/toolchain@v1 with: - toolchain: ${{ matrix.rust || 'stable' }} - target: ${{ matrix.target }} + toolchain: stable profile: minimal override: true @@ -173,7 +172,6 @@ jobs: uses: actions-rs/toolchain@v1 with: toolchain: ${{ matrix.rust || 'stable' }} - target: ${{ matrix.target }} profile: minimal override: true diff --git a/.github/workflows/wasm.yml b/.github/workflows/wasm.yml index 11299c322..bcbc18304 100644 --- a/.github/workflows/wasm.yml +++ b/.github/workflows/wasm.yml @@ -65,7 +65,7 @@ jobs: - name: Install emscripten uses: mymindstorm/setup-emsdk@v11 with: - version: ${{ matrix.emcc_version || 'latest' }} + version: latest - name: check uses: actions-rs/cargo@v1