diff --git a/.github/workflows/build-emu.yml b/.github/workflows/build-emu.yml index e377b4f..109e91e 100644 --- a/.github/workflows/build-emu.yml +++ b/.github/workflows/build-emu.yml @@ -3,7 +3,7 @@ name: Build Emulator on: push: branches: [ "main" ] - paths: ["gb-emu/**", "lib/**", "vendored/**", "Cargo.toml", ".github/workflows/build-emu.yml"] + paths: ["gb-emu/**", "lib/**", "vendored/**", "Cargo.toml"] env: CARGO_TERM_COLOR: always @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu, macos, windows] + os: [macos, windows] steps: - name: checkout @@ -31,12 +31,12 @@ jobs: uses: Swatinem/rust-cache@v2 with: shared-key: emulator-${{ matrix.os }} - - name: install cached apt packages - uses: awalsh128/cache-apt-pkgs-action@latest - if: ${{ matrix.os == 'ubuntu' }} - with: - packages: libasound2-dev libudev-dev - version: 1.0 + # - name: install cached apt packages + # uses: awalsh128/cache-apt-pkgs-action@latest + # if: ${{ matrix.os == 'ubuntu' }} + # with: + # packages: libasound2-dev libudev-dev + # version: 1.0 - name: build run: cargo build --release if: ${{ matrix.os != 'macos' }} diff --git a/.github/workflows/build-vst.yml b/.github/workflows/build-vst.yml index 7fd8540..2e6e52c 100644 --- a/.github/workflows/build-vst.yml +++ b/.github/workflows/build-vst.yml @@ -3,7 +3,7 @@ name: Build VST on: push: branches: [ "main" ] - paths: ["gb-vst/**", "lib/**", "vendored/**", "Cargo.toml", ".github/workflows/build-vst.yml"] + paths: ["gb-vst/**", "lib/**", "vendored/**", "Cargo.toml"] env: CARGO_TERM_COLOR: always @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu, macos, windows] + os: [macos, windows] steps: - name: checkout @@ -36,12 +36,12 @@ jobs: uses: Swatinem/rust-cache@v2 with: shared-key: vst-${{ matrix.os }} - - name: install cached apt packages - uses: awalsh128/cache-apt-pkgs-action@latest - if: ${{ matrix.os == 'ubuntu' }} - with: - packages: libasound2-dev libudev-dev xorg-dev libjack-jackd2-dev libx11-xcb-dev libxcb-icccm4-dev libxcb-dri2-0-dev - version: 1.0 + # - name: install cached apt packages + # uses: awalsh128/cache-apt-pkgs-action@latest + # if: ${{ matrix.os == 'ubuntu' }} + # with: + # packages: libasound2-dev libudev-dev xorg-dev libjack-jackd2-dev libx11-xcb-dev libxcb-icccm4-dev libxcb-dri2-0-dev + # version: 1.0 - name: build vst run: cargo xtask bundle vst --release if: ${{ matrix.os != 'macos' }}