Skip to content
This repository has been archived by the owner on Jul 10, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1619 from davidgfnet/wercker
Browse files Browse the repository at this point in the history
Add more targets to Wercker, including Windows
  • Loading branch information
davidgfnet committed May 26, 2019
2 parents f1b3678 + be6e4c1 commit 38514ac
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions wercker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,16 @@ build:
steps:
- script:
name: install-dependencies
code: sudo apt-get clean && sudo apt-get update && sudo apt-get install -y build-essential pkgconf libasound2-dev libgl1-mesa-dev libx11-dev libudev-dev git
code: sudo dpkg --add-architecture i386 && sudo apt-get clean && sudo apt-get update && sudo apt-get install -y build-essential pkgconf libasound2-dev libgl1-mesa-dev libx11-dev libudev-dev git && sudo apt-get install -y libasound2-dev:i386 libgl1-mesa-dev:i386 libx11-dev:i386 libudev-dev:i386 libc6:i386 g++-multilib gcc-multilib && sudo apt-get install -y g++-mingw-w64-x86-64 mingw-w64-x86-64-dev libz-mingw-w64-dev libnpth-mingw-w64-dev
- script:
name: gcc-version
code: gcc --version
name: toolchain info
code: gcc --version && x86_64-w64-mingw32-gcc --version
- script:
name: reicast x64 build
code: make -C shell/linux platform=x64
name: reicast Linux x64 build
code: make -C shell/linux -j `nproc` platform=x64
- script:
name: reicast Linux x86 build
code: make -C shell/linux -j `nproc` platform=x86
- script:
name: reicast Windows x64 (MinGW) build
code: make -C shell/linux -j `nproc` platform=win32 CC_PREFIX=x86_64-w64-mingw32-

0 comments on commit 38514ac

Please sign in to comment.