Skip to content

Add MSYS2 to git workflow actions. #494

Add MSYS2 to git workflow actions.

Add MSYS2 to git workflow actions. #494

Workflow file for this run

name: build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
Linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get -y install $(cat source/linux/raspbian.list.txt)
- name: cmake version
run: cmake --version
- name: Standard build
run: |
cmake -B build
cmake --build build
- name: Qt5 build
run: |
cmake -B build-qt5 -DBUILD_QAPPLE=ON -DQAPPLE_USE_QT5=ON
cmake --build build-qt5
- name: libretro build
run: |
cmake -DBUILD_LIBRETRO=ON -DSTATIC_LINKING=ON -B build-static
cmake --build build-static
ldd build-static/source/frontends/libretro/applewin_libretro.so