mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
35 lines
655 B
YAML
35 lines
655 B
YAML
name: Cmake CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
build-and-test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
- name: cmake
|
|
uses: lukka/run-cmake@v10
|
|
with:
|
|
configurePreset: 'default'
|
|
buildPreset: 'default'
|
|
testPreset: '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
|