Added some new actions
This commit is contained in:
29
.github/workflows/build-poker.yml
vendored
Normal file
29
.github/workflows/build-poker.yml
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
name: test
|
||||
on:
|
||||
push:
|
||||
branches: [ master, main ]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout 🛎️
|
||||
uses: actions/checkout@v2.3.1
|
||||
|
||||
- name: Setup cmake
|
||||
uses: jwlawson/actions-setup-cmake@v1.9
|
||||
with:
|
||||
cmake-version: '3.13.x'
|
||||
|
||||
- name: Get Libraries
|
||||
run: |
|
||||
git submodule update --init --recursive
|
||||
sudo apt install xorg-dev libglu1-mesa-dev
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
cmake -B build -DTARGET_TYPE=game -DTARGET_GAME=poker
|
||||
cmake --build ./build
|
||||
|
||||
- name: Test
|
||||
run: |
|
||||
./build/test/tests
|
@ -1,9 +1,7 @@
|
||||
name: test
|
||||
on:
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
push:
|
||||
branches: [ master ]
|
||||
branches: [ master, main ]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
Reference in New Issue
Block a user