Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PoroCYon
Bonzomatic
Commits
72133d55
Unverified
Commit
72133d55
authored
Nov 19, 2019
by
Gargaj
Committed by
GitHub
Nov 19, 2019
Browse files
Add Github CI workflow
parent
9935bf7b
Changes
1
Hide whitespace changes
Inline
Side-by-side
.github/workflows/main.yml
0 → 100644
View file @
72133d55
name
:
Testing build for push
on
:
[
push
]
jobs
:
build_w32
:
runs-on
:
windows-latest
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v1
-
name
:
CMake
run
:
cmake -DBONZOMATIC_64BIT="NO" -DBONZOMATIC_WINDOWS_FLAVOR:STRING="GLFW" -G "Visual Studio 16 2019" -A Win32 .
-
name
:
Build
run
:
cmake --build . --config Release
build_w64
:
runs-on
:
windows-latest
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v1
-
name
:
CMake
run
:
cmake -DBONZOMATIC_64BIT="YES" -DBONZOMATIC_WINDOWS_FLAVOR:STRING="GLFW" -G "Visual Studio 16 2019" -A x64 .
-
name
:
Build
run
:
cmake --build . --config Release
build_linux
:
runs-on
:
ubuntu-latest
steps
:
-
name
:
Install deps
run
:
sudo apt-get update && sudo apt-get install -q -y xorg-dev libasound2-dev libfontconfig1-dev libgl1-mesa-dev libglu1-mesa-dev
-
name
:
Checkout
uses
:
actions/checkout@v1
-
name
:
Build
run
:
cmake . && cmake --build .
build_osx
:
runs-on
:
macOS-latest
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v1
-
name
:
Build
run
:
cmake . && cmake --build .
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment