From 053f6f0298e5f517235d1815b1c4af24a8f98b13 Mon Sep 17 00:00:00 2001 From: "Spencer C. Imbleau" Date: Wed, 18 Jan 2023 18:34:12 -0500 Subject: [PATCH] fixed docker-wasm CI --- .github/workflows/ci.yml | 28 ++-------------------------- 1 file changed, 2 insertions(+), 26 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9501f36..58d65f3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,31 +34,7 @@ jobs: - name: Lint | Rustfmt run: cargo fmt -- --check - check: - strategy: - fail-fast: false - matrix: - os: [macos-latest, windows-latest, ubuntu-latest] - runs-on: ${{ matrix.os }} - steps: - - name: Setup | Checkout - uses: actions/checkout@v3 - - - name: Setup | Rust - uses: actions-rs/toolchain@v1 - with: - toolchain: nightly - profile: minimal - - - name: Setup | Ubuntu dependencies - if: matrix.os == 'ubuntu-latest' - run: sudo apt install libasound2-dev libudev-dev pkg-config - - - name: Check - run: cargo check - build: - needs: check strategy: fail-fast: false matrix: @@ -82,7 +58,6 @@ jobs: run: cargo build build-wasm: - needs: check runs-on: ubuntu-latest steps: - name: Setup | Checkout @@ -96,6 +71,7 @@ jobs: - name: Build | Trunk run: | cd launchers/wasm + trunk build - name: Post Setup | Upload dist uses: actions/upload-artifact@v3 @@ -113,7 +89,7 @@ jobs: uses: actions/download-artifact@v3 - name: Setup | Place dist - run: mv ./artifact ./launchers/wasm/dist/ + run: mv ./artifact ./launchers/wasm/dist - name: Setup | Docker Buildx uses: docker/setup-buildx-action@v2