axmol/.github/workflows/linux.yml

44 lines
1.2 KiB
YAML
Raw Normal View History

2020-10-24 18:41:20 +08:00
name: linux
2020-10-23 21:59:01 +08:00
2021-07-04 22:05:36 +08:00
on:
push:
2021-07-07 02:43:01 +08:00
branches:
- dev
- 1.x
paths-ignore:
- '**.md'
2022-07-15 18:51:17 +08:00
- 'docs/**'
2020-10-23 21:59:01 +08:00
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
GH_OS_NAME: linux
2020-10-25 20:15:49 +08:00
BUILD_TARGET: linux
BUILD_TYPE: Release
2020-10-23 21:59:01 +08:00
jobs:
build:
2021-07-07 10:52:45 +08:00
if: ${{ !startsWith(github.event.commits[0].message, 'Merge pull request') }}
2020-10-23 21:59:01 +08:00
# The CMake configure and build commands are platform agnostic and should work equally
# well on Windows or Mac. You can convert this to a matrix build if you need
# cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
2021-09-20 16:16:41 +08:00
runs-on: ubuntu-latest
2020-10-23 21:59:01 +08:00
steps:
2022-10-20 22:20:33 +08:00
- uses: actions/checkout@v3
2020-10-23 22:47:38 +08:00
with:
submodules: 'recursive'
2020-10-23 21:59:01 +08:00
- name: Install dependencies
2020-10-23 21:59:01 +08:00
# Some projects don't allow in-source building, so create a separate build directory
# We'll use this as our working directory for all subsequent commands
2023-06-29 19:46:52 +08:00
run: |
AX_ROOT=`pwd`
2023-07-06 12:22:41 +08:00
echo -e "y" | pwsh $AX_ROOT/setup.ps1
2020-10-23 21:59:01 +08:00
- name: Build
# Execute the build. You can specify a specific target with "--target <NAME>"
2023-06-29 19:46:52 +08:00
shell: pwsh
run: ./build.ps1 -p linux -a x64