Add DOSBox Windows Support #142
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Waterbox Cores | |
on: | |
pull_request: | |
branches: [ "master" ] | |
paths: [ "waterbox/**" ] | |
push: | |
branches: [ "master" ] | |
paths: [ "waterbox/**" ] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
CC: clang-18 | |
jobs: | |
build-waterbox: | |
uses: ./.github/workflows/waterbox.yml | |
build-waterboxed-cores: | |
runs-on: ubuntu-latest | |
needs: build-waterbox | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Getting submodule(s) | |
working-directory: ./waterbox/ | |
run: git submodule update --init snes9x; | |
git submodule update --init melon/melonDS; | |
git submodule update --init nyma/mednafen; | |
git submodule update --init ares64/ares/thirdparty/angrylion-rdp; | |
git submodule update --init gpgx/Genesis-Plus-GX; | |
git submodule update --init ../submodules/sameboy/libsameboy; | |
git submodule update --init uae/libretro-uae; | |
git submodule update --init stella/core; | |
git submodule update --init dsda/core; | |
git submodule update --init --recursive dosbox/dosbox-x; | |
- name: Install clang 18 | |
run: wget https://apt.llvm.org/llvm.sh; | |
chmod u+x llvm.sh; | |
sudo ./llvm.sh 18; | |
clang-18 --version; | |
- name: Download compiled waterbox | |
uses: actions/download-artifact@v4 | |
with: | |
name: compiled-waterbox | |
path: waterbox/sysroot | |
- name: Give execution permission to compiler | |
working-directory: ./waterbox/sysroot | |
run: chmod u+x bin/* | |
- name: Build all waterbox cores | |
working-directory: ./waterbox/ | |
run: ./make-all-cores.sh install | |
- name: Upload waterbox cores | |
uses: actions/upload-artifact@v4 | |
with: | |
name: waterbox-cores | |
path: | | |
Assets/dll/ares64_interpreter.wbx.zst | |
Assets/dll/ares64_recompiler.wbx.zst | |
Assets/dll/bsnes.wbx.zst | |
Assets/dll/dosbox.wbx.zst | |
Assets/dll/dsda.wbx.zst | |
Assets/dll/faust.wbx.zst | |
Assets/dll/gpgx.wbx.zst | |
Assets/dll/hyper.wbx.zst | |
Assets/dll/libsnes.wbx.zst | |
Assets/dll/melonDS.wbx.zst | |
Assets/dll/ngp.wbx.zst | |
Assets/dll/pcfx.wbx.zst | |
Assets/dll/picodrive.wbx.zst | |
Assets/dll/shock.wbx.zst | |
Assets/dll/snes9x.wbx.zst | |
Assets/dll/ss.wbx.zst | |
Assets/dll/stella.wbx.zst | |
Assets/dll/tic80.wbx.zst | |
Assets/dll/turbo.wbx.zst | |
Assets/dll/uae.wbx.zst | |
Assets/dll/uzem.wbx.zst | |
Assets/dll/vb.wbx.zst | |
Assets/dll/virtualjaguar.wbx.zst |