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

ci: initialize GitHub Actions for xmake builds #3

ci: initialize GitHub Actions for xmake builds

ci: initialize GitHub Actions for xmake builds #3

Workflow file for this run

name: Build xmake
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
name: ${{matrix.os}}
runs-on: ${{matrix.os}}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup enviroment (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt update
sudo apt install libudev-dev libx11-dev libxcursor-dev libxrandr-dev libgl1-mesa-dev libalut-dev libvorbis-dev libsndfile1-dev libsfml-dev
- name: Setup clang (Windows)
if: matrix.os == 'windows-latest'
run: echo "PATH=$PATH:C:/msys64/mingw64/bin" >> $GITHUB_ENV
- uses: xmake-io/github-action-setup-xmake@v1
- name: Build (Release)
run: xmake -y
- name: Upload binaries (Windows)
if: matrix.os == 'windows-latest'
uses: actions/upload-artifact@v4
with:
name: gomoku-windows
path: build/windows/x64/release/gomoku.exe
- name: Upload binaries (Ubuntu)
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v4
with:
name: gomoku-ubuntu
path: build/linux/x64/release/gomoku