2023-01-10 06:49:05 -05:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2023-01-16 13:11:45 -05:00
|
|
|
- "**"
|
2023-06-14 17:12:51 -04:00
|
|
|
tags:
|
|
|
|
- '[0-9]+.[0-9]+.[0-9]+'
|
2023-01-10 06:49:05 -05:00
|
|
|
pull_request:
|
|
|
|
branches:
|
2023-01-16 13:11:45 -05:00
|
|
|
- "**"
|
2023-01-10 06:49:05 -05:00
|
|
|
types: [opened, synchronize, reopened]
|
2023-06-12 17:21:43 -04:00
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-01-10 06:49:05 -05:00
|
|
|
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
|
2023-02-27 17:14:27 -05:00
|
|
|
uses: actions/checkout@v3.3.0
|
2023-01-10 06:49:05 -05:00
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
fetch-depth: 0
|
|
|
|
lfs: false
|
|
|
|
|
|
|
|
- name: Add msbuild to PATH
|
2023-02-27 17:14:27 -05:00
|
|
|
uses: microsoft/setup-msbuild@v1.3.1
|
2023-01-10 06:49:05 -05:00
|
|
|
|
2023-06-12 17:21:43 -04:00
|
|
|
- name: Add premake5 to PATH
|
|
|
|
uses: abel0b/setup-premake@v2.2
|
|
|
|
with:
|
|
|
|
version: "5.0.0-beta2"
|
|
|
|
|
2023-01-10 06:49:05 -05:00
|
|
|
- name: Generate project files
|
2023-06-12 17:21:43 -04:00
|
|
|
run: premake5 vs2022
|
2023-01-10 06:49:05 -05:00
|
|
|
|
|
|
|
- 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
|
2023-02-27 17:14:27 -05:00
|
|
|
uses: actions/upload-artifact@v3.1.2
|
2023-01-10 06:49:05 -05:00
|
|
|
with:
|
|
|
|
name: Windows ${{matrix.configuration}} ${{matrix.arch}} binaries
|
|
|
|
path: |
|
|
|
|
build/bin/${{matrix.arch}}/${{matrix.configuration}}/gsc-tool.exe
|
|
|
|
|
|
|
|
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
|
2023-02-27 17:14:27 -05:00
|
|
|
uses: actions/checkout@v3.3.0
|
2023-01-10 06:49:05 -05:00
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
fetch-depth: 0
|
|
|
|
lfs: false
|
|
|
|
|
2023-06-12 17:21:43 -04:00
|
|
|
- name: Add premake5 to PATH
|
|
|
|
uses: abel0b/setup-premake@v2.2
|
|
|
|
with:
|
|
|
|
version: "5.0.0-beta2"
|
|
|
|
|
2023-01-10 06:49:05 -05:00
|
|
|
- name: Generate project files
|
2023-06-12 17:21:43 -04:00
|
|
|
run: premake5 gmake2
|
2023-01-10 06:49:05 -05:00
|
|
|
|
|
|
|
- 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)
|
2023-06-12 17:21:43 -04:00
|
|
|
|
2023-01-10 06:49:05 -05:00
|
|
|
- name: Upload ${{matrix.configuration}} ${{matrix.arch}} binaries
|
2023-02-27 17:14:27 -05:00
|
|
|
uses: actions/upload-artifact@v3.1.2
|
2023-01-10 06:49:05 -05:00
|
|
|
with:
|
|
|
|
name: macOS ${{matrix.configuration}} ${{matrix.arch}} binaries
|
|
|
|
path: |
|
|
|
|
build/bin/${{matrix.platform}}/${{matrix.configuration}}/gsc-tool
|
2023-02-27 17:14:27 -05:00
|
|
|
|
|
|
|
build-lin:
|
|
|
|
name: Build Linux
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
configuration:
|
|
|
|
- debug
|
|
|
|
- release
|
|
|
|
arch:
|
|
|
|
- x64
|
|
|
|
include:
|
|
|
|
- configuration: debug
|
|
|
|
config: debug
|
|
|
|
- configuration: release
|
|
|
|
config: release
|
2023-05-13 13:24:57 -04:00
|
|
|
- arch: x64
|
|
|
|
platform: x64
|
2023-02-27 17:14:27 -05:00
|
|
|
steps:
|
|
|
|
- name: Check out files
|
|
|
|
uses: actions/checkout@v3.3.0
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
fetch-depth: 0
|
|
|
|
lfs: false
|
2023-06-12 17:21:43 -04:00
|
|
|
|
|
|
|
- name: Add mold to PATH
|
|
|
|
uses: rui314/setup-mold@staging
|
|
|
|
|
|
|
|
- name: Add premake5 to PATH
|
|
|
|
uses: abel0b/setup-premake@v2.2
|
|
|
|
with:
|
|
|
|
version: "5.0.0-beta2"
|
|
|
|
|
2023-02-27 17:14:27 -05:00
|
|
|
- name: Generate project files
|
2023-06-12 17:21:43 -04:00
|
|
|
run: premake5 gmake2
|
2023-02-27 17:14:27 -05:00
|
|
|
|
|
|
|
- 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.arch}} -j$(nproc)
|
|
|
|
env:
|
|
|
|
CC: clang
|
|
|
|
CXX: clang++
|
|
|
|
|
|
|
|
- name: Upload ${{matrix.configuration}} ${{matrix.arch}} binaries
|
|
|
|
uses: actions/upload-artifact@v3.1.2
|
|
|
|
with:
|
|
|
|
name: Linux ${{matrix.configuration}} ${{matrix.arch}} binaries
|
|
|
|
path: |
|
|
|
|
build/bin/${{matrix.platform}}/${{matrix.configuration}}/gsc-tool
|
2023-06-14 17:12:51 -04:00
|
|
|
|
|
|
|
deploy:
|
|
|
|
name: Deploy Release
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: [ build-win, build-mac, build-lin ]
|
|
|
|
if: startsWith(github.ref, 'refs/tags/') && github.event.base_ref == 'refs/heads/prod'
|
|
|
|
steps:
|
|
|
|
- name: Check out files
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Download Binaries
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: Windows release x64 binaries
|
|
|
|
|
|
|
|
- name: Create Release
|
|
|
|
uses: "marvinpinto/action-automatic-releases@latest"
|
|
|
|
with:
|
|
|
|
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
|
|
|
prerelease: false
|
|
|
|
draft: true
|
|
|
|
files: |
|
|
|
|
gsc-tool.exe
|