mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-12-23 22:13:35 +00:00
34 lines
616 B
YAML
34 lines
616 B
YAML
|
name: Cmake CI
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ main ]
|
||
|
pull_request:
|
||
|
branches: [ main ]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
with:
|
||
|
submodules: true
|
||
|
- name: cmake
|
||
|
uses: lukka/run-cmake@v10
|
||
|
with:
|
||
|
configurePreset: 'default'
|
||
|
buildPreset: 'default'
|
||
|
- name: artifacts
|
||
|
uses: actions/upload-artifact@v2
|
||
|
with:
|
||
|
name: linux-build
|
||
|
path: |
|
||
|
build
|
||
|
!build/CMakeCache.txt
|
||
|
!build/build.ninja
|
||
|
!build/_deps
|
||
|
!build/cmake_install.cmake
|
||
|
!build/*.a
|