Skip to content

Commit 8a97cd3

Browse files
committed
WIP github action
1 parent b79ae82 commit 8a97cd3

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/build_and_test.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Build and test
2+
on:
3+
push:
4+
branches: [ "wip_actions" ]
5+
pull_request:
6+
branches: [ "wip_actions" ]
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-24.04
11+
steps:
12+
- uses: MarkusJx/install-boost
13+
with:
14+
boost_version: 1.83.0
15+
- uses: actions/checkout@v4
16+
with:
17+
path: ./src
18+
submodules: recursive
19+
- name: build-debug
20+
run: |
21+
cmake -DCMAKE_BUILD_TYPE=Debug -DENABLE_JS=On -DXCMAKE_CLANG_TIDY=On -DXCMAKE_SYSTEM_GTEST=OFF -DXCMAKE_DOXYGEN_WERROR=OFF -DCMAKE_INSTALL_PREFIX=inst -Bbuild src
22+
make -C build install -j$(nproc)

0 commit comments

Comments
 (0)