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

Commit

Permalink
ci: initialize GitHub Actions for xmake builds
Browse files Browse the repository at this point in the history
  • Loading branch information
ShenMian committed Jul 7, 2024
1 parent 9500f6d commit 8a9d48f
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-cmake.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build
name: Build cmake

on: [push, pull_request]

Expand Down
47 changes: 47 additions & 0 deletions .github/workflows/build-xmake.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
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

- 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

0 comments on commit 8a9d48f

Please sign in to comment.