boytacean 0.12.1

A Game Boy emulator that is written in Rust.
Documentation
name: Extra Workflow
on:
  push:
  schedule:
    - cron: "0 0 * * 0"
jobs:
  build-windows:
    name: Build Windows
    timeout-minutes: 30
    runs-on: windows-latest
    steps:
      - name: Checkout code from repository
        uses: actions/checkout@v4
      - name: Setup Rust
        run: |

          rustup install 1.86.0
          rustup override set 1.86.0
          rustup default stable-msvc
      - name: Cache SDL build
        uses: actions/cache@v4
        with:
          path: |

            ~/.vcpkg-root
            ~/.cache/vcpkg
            ~/vcpkg
            target/vcpkg
          key: vcpkg-${{ runner.os }}-${{ hashFiles('frontends/sdl/Cargo.toml') }}
      - name: Setup SDL
        run: |

          cd frontends/sdl
          cargo install cargo-vcpkg && cargo vcpkg -v build
      - name: Test Base
        run: cargo test
      - name: Build Base
        run: cargo build --release
      - name: Test SDL
        run: |

          cd frontends/sdl
          cargo test
      - name: Test All
        run: cargo test --all
      - name: Build SDL
        run: |

          cd frontends/sdl
          cargo build --release
      - name: Build Libretro
        run: |

          cd frontends/libretro
          cargo build --release
  build-mac:
    name: Build Mac
    timeout-minutes: 30
    runs-on: macos-latest
    steps:
      - name: Checkout code from repository
        uses: actions/checkout@v4
      - name: Setup Rust
        run: |

          rustup install 1.86.0
          rustup override set 1.86.0
      - name: Cache SDL build
        uses: actions/cache@v4
        with:
          path: |

            ~/.vcpkg-root
            ~/.cache/vcpkg
            ~/vcpkg
            target/vcpkg
          key: vcpkg-${{ runner.os }}-${{ hashFiles('frontends/sdl/Cargo.toml') }}
      - name: Setup SDL
        run: |

          cd frontends/sdl
          cargo install cargo-vcpkg && cargo vcpkg -v build
      - name: Test Base
        run: cargo test
      - name: Build Base
        run: cargo build --release
      - name: Test SDL
        run: |

          cd frontends/sdl
          cargo test
      - name: Test All
        run: cargo test --all
      - name: Build SDL
        run: |

          cd frontends/sdl
          cargo install cargo-vcpkg && cargo vcpkg -v build
          cargo build --release
      - name: Build Libretro
        run: |

          cd frontends/libretro
          cargo build --release