Test new msys #28
This file contains 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 project | |
on: [push, pull_request] | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Update and install packages | |
run: | | |
apt-get -qq update | |
ACCEPT_EULA=Y apt-get -y dist-upgrade | |
apt-get -y install g++ build-essential make autoconf libglfw3-dev libsdl2-image-dev libsdl2-dev libczmq-dev cppcheck | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Build from makefile | |
working-directory: Project | |
run: | | |
make -j | |
- name: Upload ELF | |
uses: actions/upload-artifact@v2 | |
with: | |
name: meshglide | |
path: Project/MeshGlide | |
build-windows: | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- name: Install MSYS2 | |
uses: msys2/setup-msys2@v2 | |
with: | |
msystem: MINGW32 | |
update: true | |
install: >- | |
git | |
make | |
mingw-w64-i686-toolchain | |
mingw-w64-i686-SDL2 | |
mingw-w64-i686-zlib | |
mingw-w64-i686-SDL2_image | |
mingw-w64-i686-zeromq | |
mingw-w64-i686-glfw | |
mingw-w64-i686-libpng | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Build from makefile | |
working-directory: Project | |
run: | | |
make -j |