master-server/.github/workflows/build.yml

255 lines
7.3 KiB
YAML
Raw Normal View History

2023-05-26 10:09:29 -04:00
name: Build
on:
push:
branches:
2024-03-22 11:13:30 -04:00
- "**"
tags:
- '[0-9]+.[0-9]+.[0-9]+'
2023-05-26 10:09:29 -04:00
pull_request:
branches:
2024-03-22 11:13:30 -04:00
- "**"
2023-05-26 10:09:29 -04:00
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
2024-01-13 04:40:06 -05:00
env:
PREMAKE_VERSION: "5.0.0-beta2"
2023-05-26 10:09:29 -04:00
jobs:
build-win:
name: Build Windows
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
configuration:
2024-01-12 05:55:14 -05:00
- debug
- release
2023-05-26 10:09:29 -04:00
arch:
- x64
- arm64
2023-05-26 10:09:29 -04:00
include:
- arch: x64
platform: x64
- arch: arm64
platform: arm64
2023-05-26 10:09:29 -04:00
steps:
- name: Check out files
2024-01-12 05:55:14 -05:00
uses: actions/checkout@main
2023-05-26 10:09:29 -04:00
with:
submodules: true
fetch-depth: 0
# NOTE - If LFS ever starts getting used during builds, switch this to true!
lfs: false
- name: Add msbuild to PATH
2024-01-12 05:55:14 -05:00
uses: microsoft/setup-msbuild@main
2023-05-26 10:09:29 -04:00
- name: Install Premake5
2024-03-11 13:15:08 -04:00
uses: diamante0018/setup-premake@master
with:
2024-01-13 04:40:06 -05:00
version: ${{ env.PREMAKE_VERSION }}
2023-05-26 10:09:29 -04:00
- name: Generate project files
run: premake5 vs2022
2023-05-26 10:09:29 -04:00
- name: Set up problem matching
uses: ammaraskar/msvc-problem-matcher@master
2024-01-12 05:55:14 -05:00
- name: Build ${{matrix.arch}} ${{matrix.configuration}} binaries
2023-05-26 10:09:29 -04:00
run: msbuild /m /v:minimal /p:Configuration=${{matrix.configuration}} /p:Platform=${{matrix.platform}} build/alterware-master.sln
2024-01-12 05:55:14 -05:00
- name: Upload ${{matrix.arch}} ${{matrix.configuration}} binaries
uses: actions/upload-artifact@main
2023-05-26 10:09:29 -04:00
with:
2024-01-12 05:55:14 -05:00
name: windows-${{matrix.arch}}-${{matrix.configuration}}
2023-05-26 10:09:29 -04:00
path: |
build/bin/${{matrix.arch}}/${{matrix.configuration}}/alterware-master.exe
build/bin/${{matrix.arch}}/${{matrix.configuration}}/alterware-master.pdb
build-linux:
name: Build Linux
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
configuration:
2024-01-12 05:55:14 -05:00
- debug
- release
2023-05-26 10:09:29 -04:00
arch:
- x64
steps:
- name: Check out files
2024-01-12 05:55:14 -05:00
uses: actions/checkout@main
2023-05-26 10:09:29 -04:00
with:
submodules: true
fetch-depth: 0
# NOTE - If LFS ever starts getting used during builds, switch this to true!
lfs: false
- name: Install dependencies (x64)
if: matrix.arch == 'x64'
run: |
sudo apt-get update
2023-06-29 14:28:28 -04:00
sudo apt-get install libcurl4-gnutls-dev -y
2023-05-26 10:09:29 -04:00
- name: Install Premake5
2024-03-11 13:15:08 -04:00
uses: diamante0018/setup-premake@master
with:
2024-01-13 04:40:06 -05:00
version: ${{ env.PREMAKE_VERSION }}
2023-05-26 10:09:29 -04:00
- name: Generate project files
run: premake5 --cc=clang gmake2
2023-05-26 10:09:29 -04:00
- name: Set up problem matching
uses: ammaraskar/gcc-problem-matcher@master
2024-01-12 05:55:14 -05:00
- name: Build ${{matrix.arch}} ${{matrix.configuration}} binaries
2023-05-26 10:09:29 -04:00
run: |
pushd build
2024-01-12 05:55:14 -05:00
make config=${{matrix.configuration}}_${{matrix.arch}} -j$(nproc)
2023-06-29 14:28:28 -04:00
env:
CC: clang
CXX: clang++
2023-05-26 10:09:29 -04:00
2024-01-12 05:55:14 -05:00
- name: Upload ${{matrix.arch}} ${{matrix.configuration}} binaries
uses: actions/upload-artifact@main
2023-05-26 10:09:29 -04:00
with:
2024-01-12 05:55:14 -05:00
name: linux-${{matrix.arch}}-${{matrix.configuration}}
2023-05-26 10:09:29 -04:00
path: |
build/bin/${{matrix.arch}}/${{matrix.configuration}}/alterware-master
2023-06-29 14:28:28 -04:00
build-macos:
2023-05-26 10:09:29 -04:00
name: Build macOS
runs-on: macos-13
strategy:
fail-fast: false
matrix:
configuration:
2024-01-12 05:55:14 -05:00
- debug
- release
2023-05-26 10:09:29 -04:00
arch:
- x64
2023-06-29 14:28:28 -04:00
- arm64
2023-05-26 10:09:29 -04:00
steps:
- name: Check out files
2024-01-12 05:55:14 -05:00
uses: actions/checkout@main
2023-05-26 10:09:29 -04:00
with:
submodules: true
fetch-depth: 0
# NOTE - If LFS ever starts getting used during builds, switch this to true!
lfs: false
- name: Install Premake5
2024-03-11 13:15:08 -04:00
uses: diamante0018/setup-premake@master
with:
2024-01-13 04:40:06 -05:00
version: ${{ env.PREMAKE_VERSION }}
2023-05-26 10:09:29 -04:00
- name: Generate project files
run: premake5 gmake2
2023-05-26 10:09:29 -04:00
- name: Set up problem matching
uses: ammaraskar/gcc-problem-matcher@master
2024-01-12 05:55:14 -05:00
- name: Build ${{matrix.arch}} ${{matrix.configuration}} binaries
2023-05-26 10:09:29 -04:00
run: |
pushd build
2024-01-12 05:55:14 -05:00
make config=${{matrix.configuration}}_${{matrix.arch}} -j$(sysctl -n hw.logicalcpu)
2023-05-26 10:09:29 -04:00
2024-01-12 05:55:14 -05:00
- name: Upload ${{matrix.arch}} ${{matrix.configuration}} binaries
uses: actions/upload-artifact@main
2023-05-26 10:09:29 -04:00
with:
2024-01-12 05:55:14 -05:00
name: macos-${{matrix.arch}}-${{matrix.configuration}}
2023-05-26 10:09:29 -04:00
path: |
2023-06-23 08:06:51 -04:00
build/bin/${{matrix.arch}}/${{matrix.configuration}}/alterware-master
2024-01-14 07:34:54 -05:00
deploy:
name: Deploy artifacts
needs: [build-win, build-linux, build-macos]
runs-on: ubuntu-latest
2024-03-22 11:13:30 -04:00
if: github.ref_type == 'tag'
2024-01-14 07:34:54 -05:00
steps:
- name: Setup main environment
run: echo "ALTERWARE_MASTER_SERVER_PATH=${{ secrets.ALTERWARE_MASTER_SERVER_SSH_PATH }}" >> $GITHUB_ENV
- name: Download Release binaries
uses: actions/download-artifact@main
with:
name: linux-x64-release
- name: Install SSH key
uses: shimataro/ssh-key-action@v2.7.0
2024-01-14 07:34:54 -05:00
with:
key: ${{ secrets.ALTERWARE_MASTER_SERVER_SSH_PRIVATE_KEY }}
known_hosts: 'just-a-placeholder-so-we-dont-get-errors'
- name: Add known hosts
run: ssh-keyscan -H ${{ secrets.ALTERWARE_MASTER_SERVER_SSH_ADDRESS }} >> ~/.ssh/known_hosts
- name: Upload release binary
run: rsync -avz alterware-master ${{ secrets.ALTERWARE_MASTER_SERVER_SSH_USER }}@${{ secrets.ALTERWARE_MASTER_SERVER_SSH_ADDRESS }}:${{ env.ALTERWARE_MASTER_SERVER_PATH }}/
- name: Publish changes
run: ssh ${{ secrets.ALTERWARE_MASTER_SERVER_SSH_USER }}@${{ secrets.ALTERWARE_MASTER_SERVER_SSH_ADDRESS }} ${{ secrets.ALTERWARE_SSH_SERVER_PUBLISH_COMMAND }}
2024-03-22 11:13:30 -04:00
docker:
name: Create Docker Image
needs: [build-win, build-linux, build-macos]
runs-on: ubuntu-latest
if: github.ref_type == 'tag'
steps:
- name: Check out files
uses: actions/checkout@main
with:
sparse-checkout: |
Dockerfile
README.md
sparse-checkout-cone-mode: false
- name: Download Release binaries
uses: actions/download-artifact@main
- name: Compress Binaries
run: |
for dir in */; do
if [[ $dir == *"windows"* ]]; then
cd "$dir" && zip -r "../${dir%/}.zip" . && cd ..
else
tar -czvf "${dir%/}.tar.gz" -C "$dir" .
fi
done
shell: bash
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3.2.0
- name: Login to DockerHub
uses: docker/login-action@v3.1.0
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- id: meta
uses: docker/metadata-action@v5.5.1
with:
images: |
alterware/master-server
tags: |
${{ github.ref_name }}
latest
- name: Build and Push Docker Image
id: build-and-push
uses: docker/build-push-action@v5.1.0
with:
context: .
platforms: linux/amd64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max