Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI test #435

Merged
merged 1 commit into from
Apr 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
steps:
- name: Install dependencies
run: sudo apt update && sudo apt install -y --no-install-recommends $MZXDEPS_DEBIAN_SDL2
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Configure
run: ./config.sh --platform unix --enable-release --enable-sdlaccel
- name: Build
Expand All @@ -47,7 +47,7 @@ jobs:
steps:
- name: Install dependencies
run: sudo apt update && sudo apt install -y --no-install-recommends $MZXDEPS_DEBIAN_SDL2
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Configure
run: ./config.sh --platform unix-devel --enable-release --enable-sdlaccel
- name: Build
Expand All @@ -62,7 +62,7 @@ jobs:
steps:
- name: Install dependencies
run: sudo apt update && sudo apt install -y --no-install-recommends $MZXDEPS_DEBIAN_SDL2 $MZXDEPS_DEBIAN_MISC
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Configure (SDL 1.2)
run: ./config.sh --platform unix-devel --enable-release --enable-sdl1
- name: Build (SDL 1.2)
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
unix-static:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: 🙄
run: sudo sed -i '/deb-src/s/^# //' /etc/apt/sources.list
# - name: Install dependencies
Expand All @@ -137,7 +137,7 @@ jobs:
darwin-devel:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies
run: brew install $MZXDEPS_MACOS
- name: Configure
Expand All @@ -162,7 +162,7 @@ jobs:
base-devel git p7zip
mingw-w64-x86_64-gcc mingw-w64-x86_64-zlib mingw-w64-x86_64-libpng
mingw-w64-x86_64-libogg mingw-w64-x86_64-libvorbis mingw-w64-x86_64-SDL2
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Configure x64
run: ./config.sh --platform win64 --enable-release
- name: Build x64
Expand All @@ -187,7 +187,7 @@ jobs:
base-devel git p7zip
mingw-w64-i686-gcc mingw-w64-i686-zlib mingw-w64-i686-libpng
mingw-w64-i686-libogg mingw-w64-i686-libvorbis mingw-w64-i686-SDL2
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Configure x86
run: ./config.sh --platform win32 --enable-release
- name: Build x86
Expand All @@ -204,7 +204,7 @@ jobs:
- name: Install dependencies
run: sudo apt update && sudo apt install -y --no-install-recommends $MZXDEPS_DEBIAN_CROSS
- run: echo "PATH=$DEVKITPRO/devkitA64/bin:$PATH" >> $GITHUB_ENV
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Configure Switch
run: arch/switch/CONFIG.SWITCH
- name: Build Switch
Expand All @@ -219,7 +219,7 @@ jobs:
- name: Install dependencies
run: sudo apt update && sudo apt install -y --no-install-recommends $MZXDEPS_DEBIAN_CROSS
- run: echo "PATH=$DEVKITPRO/devkitARM/bin:$PATH" >> $GITHUB_ENV
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Configure 3DS
run: arch/3ds/CONFIG.3DS
- name: Build 3DS
Expand All @@ -234,7 +234,7 @@ jobs:
- name: Install dependencies
run: sudo apt update && sudo apt install -y --no-install-recommends $MZXDEPS_DEBIAN_CROSS
- run: echo "PATH=$DEVKITPRO/devkitARM/bin:$PATH" >> $GITHUB_ENV
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Configure NDS
run: arch/nds/CONFIG.NDS
- name: Build NDS
Expand All @@ -251,7 +251,7 @@ jobs:
- name: Install target dependencies
run: wf-pacman -Syu --noconfirm && wf-pacman -S --noconfirm toolchain-gcc-arm-none-eabi-zlib
- run: echo "BLOCKSDS=/opt/blocksds/core" >> $GITHUB_ENV
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Configure NDS/BlocksDS
run: arch/nds-blocksds/CONFIG.NDS
- name: Build NDS/BlocksDS
Expand All @@ -266,7 +266,7 @@ jobs:
- name: Install dependencies
run: sudo apt update && sudo apt install -y --no-install-recommends $MZXDEPS_DEBIAN_CROSS
- run: echo "PATH=$DEVKITPRO/devkitPPC/bin:$PATH" >> $GITHUB_ENV
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Configure Wii
run: arch/wii/CONFIG.WII
- name: Build Wii
Expand All @@ -281,7 +281,7 @@ jobs:
- name: Install dependencies
run: sudo apt update && sudo apt install -y --no-install-recommends $MZXDEPS_DEBIAN_CROSS
- run: echo "PATH=$DEVKITPRO/devkitPPC/bin:$PATH" >> $GITHUB_ENV
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Configure Wii U
run: arch/wiiu/CONFIG.WIIU
- name: Build Wii U
Expand All @@ -297,9 +297,9 @@ jobs:
- name: Install Emscripten
uses: mymindstorm/setup-emsdk@v14
with:
version: 3.1.56
version: 3.1.57
actions-cache-folder: 'emsdk-cache'
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Configure HTML5
run: arch/emscripten/CONFIG.HTML5
- name: Build HTML5
Expand All @@ -318,7 +318,7 @@ jobs:
steps:
- name: Install dependencies
run: sudo apt update && sudo apt install -y --no-install-recommends $MZXDEPS_DEBIAN_SDL2
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Configure
run: ./config.sh --platform unix-devel --enable-asan
- name: Build
Expand All @@ -339,7 +339,7 @@ jobs:
CXX: clang++
ZLIB_LDFLAGS: DEPS/lib/libz.a
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: 🙄
run: sudo sed -i '/deb-src/s/^# //' /etc/apt/sources.list
- name: Fetch dependency sources
Expand All @@ -366,7 +366,7 @@ jobs:
steps:
- name: Install dependencies
run: sudo apt update && sudo apt install -y --no-install-recommends $MZXDEPS_DEBIAN_SDL2
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Configure
run: ./config.sh --platform unix-devel --enable-ubsan
- name: Build
Expand Down
Loading