feature(github): add workflow (#40)
feature(workflow): add GitHub actions
This commit is contained in:
parent
105297aeaa
commit
d755f7788b
101
.github/workflows/build.yml
vendored
Normal file
101
.github/workflows/build.yml
vendored
Normal file
@ -0,0 +1,101 @@
|
||||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- "*"
|
||||
pull_request:
|
||||
branches:
|
||||
- "*"
|
||||
types: [opened, synchronize, reopened]
|
||||
jobs:
|
||||
build-win:
|
||||
name: Build Windows
|
||||
runs-on: windows-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
configuration:
|
||||
- debug
|
||||
- release
|
||||
arch:
|
||||
- x86
|
||||
- x64
|
||||
include:
|
||||
- arch: x86
|
||||
platform: Win32
|
||||
- arch: x64
|
||||
platform: x64
|
||||
steps:
|
||||
- name: Check out files
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: true
|
||||
fetch-depth: 0
|
||||
lfs: false
|
||||
|
||||
- name: Add msbuild to PATH
|
||||
uses: microsoft/setup-msbuild@v1.1.3
|
||||
|
||||
- name: Generate project files
|
||||
run: cmd /C call prebuild-windows.bat
|
||||
|
||||
- name: Set up problem matching
|
||||
uses: ammaraskar/msvc-problem-matcher@master
|
||||
|
||||
- name: Build ${{matrix.configuration}} ${{matrix.arch}} binaries
|
||||
run: msbuild /m /v:minimal /p:Configuration=${{matrix.configuration}} /p:Platform=${{matrix.platform}} build/gsc-tool.sln
|
||||
|
||||
- name: Upload ${{matrix.configuration}} ${{matrix.arch}} binaries
|
||||
uses: actions/upload-artifact@v3.1.0
|
||||
with:
|
||||
name: Windows ${{matrix.configuration}} ${{matrix.arch}} binaries
|
||||
path: |
|
||||
build/bin/${{matrix.arch}}/${{matrix.configuration}}/gsc-tool.exe
|
||||
build/bin/${{matrix.arch}}/${{matrix.configuration}}/gsc-tool.pdb
|
||||
|
||||
build-mac:
|
||||
name: Build macOS
|
||||
runs-on: macos-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
configuration:
|
||||
- debug
|
||||
- release
|
||||
arch:
|
||||
- x64
|
||||
- ARM64
|
||||
include:
|
||||
- configuration: debug
|
||||
config: debug
|
||||
- configuration: release
|
||||
config: release
|
||||
- arch: x64
|
||||
platform: x64
|
||||
- arch: ARM64
|
||||
platform: arm64
|
||||
steps:
|
||||
- name: Check out files
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: true
|
||||
fetch-depth: 0
|
||||
lfs: false
|
||||
|
||||
- name: Generate project files
|
||||
run: ./prebuild-macos.sh
|
||||
|
||||
- name: Set up problem matching
|
||||
uses: ammaraskar/gcc-problem-matcher@master
|
||||
|
||||
- name: Build ${{matrix.configuration}} ${{matrix.arch}} binaries
|
||||
run: |
|
||||
pushd build
|
||||
make config=${{matrix.config}}_${{matrix.platform}} -j$(sysctl -n hw.logicalcpu)
|
||||
- name: Upload ${{matrix.configuration}} ${{matrix.arch}} binaries
|
||||
uses: actions/upload-artifact@v3.1.0
|
||||
with:
|
||||
name: macOS ${{matrix.configuration}} ${{matrix.arch}} binaries
|
||||
path: |
|
||||
build/bin/${{matrix.platform}}/${{matrix.configuration}}/gsc-tool
|
@ -1,4 +1,5 @@
|
||||
[![build](https://ci.appveyor.com/api/projects/status/defmhg4753c1ap1o?svg=true)](https://ci.appveyor.com/project/xensik/gsc-tool)
|
||||
[![build](https://github.com/xensik/gsc-tool/workflows/Build/badge.svg)](https://github.com/xensik/gsc-tool/actions)
|
||||
![license](https://img.shields.io/github/license/xensik/gsc-tool.svg)
|
||||
[![issues](https://img.shields.io/github/issues/xensik/gsc-tool)](https://github.com/xensik/gsc-tool/issues)
|
||||
[![releases](https://img.shields.io/github/v/release/xensik/gsc-tool)](https://github.com/xensik/gsc-tool/releases)
|
||||
|
3
prebuild-linux.sh
Executable file
3
prebuild-linux.sh
Executable file
@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
git submodule update --init --recursive
|
||||
./tools/linux/premake5 gmake2
|
@ -1,3 +1,3 @@
|
||||
#!/bin/sh
|
||||
git submodule update --init --recursive
|
||||
./tools/macos/premake5 gmake
|
||||
./tools/macos/premake5 gmake2
|
||||
|
@ -1,3 +1,3 @@
|
||||
@echo off
|
||||
git submodule update --init --recursive
|
||||
tools\windows\premake5.exe vs2022
|
||||
tools\windows\premake5.exe %* vs2022
|
||||
|
58
premake5.lua
58
premake5.lua
@ -13,38 +13,70 @@ end
|
||||
dependencies.load()
|
||||
-------------------------------------------------
|
||||
workspace "gsc-tool"
|
||||
startproject "xsk-gsc-tool"
|
||||
location "./build"
|
||||
objdir "%{wks.location}/obj/%{cfg.buildcfg}/%{prj.name}"
|
||||
targetdir "%{wks.location}/bin/%{cfg.buildcfg}"
|
||||
targetdir "%{wks.location}/bin/%{cfg.platform}/%{cfg.buildcfg}"
|
||||
targetname "%{prj.name}"
|
||||
staticruntime "On"
|
||||
language "C++"
|
||||
cppdialect "C++20"
|
||||
architecture "x86_64"
|
||||
|
||||
filter "action:vs*"
|
||||
buildoptions "/bigobj"
|
||||
buildoptions "/Zc:__cplusplus"
|
||||
configurations { "debug", "release" }
|
||||
|
||||
if os.istarget("darwin") then
|
||||
platforms { "x64", "arm64" }
|
||||
else
|
||||
platforms { "x86", "x64" }
|
||||
end
|
||||
|
||||
filter "platforms:x86"
|
||||
architecture "x86"
|
||||
filter {}
|
||||
|
||||
configurations { "Debug", "Release" }
|
||||
filter "platforms:x64"
|
||||
architecture "x86_64"
|
||||
filter {}
|
||||
|
||||
filter "platforms:arm64"
|
||||
architecture "ARM64"
|
||||
filter {}
|
||||
|
||||
filter { "language:C++", "toolset:not msc*" }
|
||||
buildoptions "-std=c++20"
|
||||
filter {}
|
||||
|
||||
filter "toolset:msc*"
|
||||
buildoptions "/bigobj"
|
||||
buildoptions "/Zc:__cplusplus"
|
||||
buildoptions "/std:c++20"
|
||||
filter {}
|
||||
|
||||
filter { "system:windows" }
|
||||
systemversion "latest"
|
||||
filter {}
|
||||
|
||||
filter { "system:macosx" }
|
||||
systemversion "12.0"
|
||||
filter {}
|
||||
|
||||
symbols "On"
|
||||
staticruntime "On"
|
||||
warnings "Extra"
|
||||
|
||||
filter "configurations:Release"
|
||||
if os.istarget("linux") or os.istarget("darwin") then
|
||||
buildoptions "-pthread"
|
||||
linkoptions "-pthread"
|
||||
end
|
||||
|
||||
filter "configurations:release"
|
||||
optimize "Full"
|
||||
defines { "NDEBUG" }
|
||||
flags { "FatalCompileWarnings" }
|
||||
filter {}
|
||||
|
||||
filter "configurations:Debug"
|
||||
filter "configurations:debug"
|
||||
optimize "Debug"
|
||||
defines { "DEBUG", "_DEBUG" }
|
||||
filter {}
|
||||
|
||||
startproject "xsk-gsc-tool"
|
||||
|
||||
project "xsk-gsc-tool"
|
||||
kind "ConsoleApp"
|
||||
language "C++"
|
||||
|
BIN
tools/linux/premake5
Executable file
BIN
tools/linux/premake5
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user