summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorcoco875 <pereira.jannin@gmail.com>2024-01-24 21:16:24 +0100
committerLywx <kiritodev01@gmail.com>2024-01-24 16:52:59 -0600
commit656440aeee9d872ccbe83a0bafbae880c1a2f199 (patch)
treee36b584e85e3541a34498c87fb1398648d4277a7 /.github
parent01e4b8a8612a0e63e232bd941fb777b701d9ca61 (diff)
add linux build actions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/linux_build.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/linux_build.yml b/.github/workflows/linux_build.yml
new file mode 100644
index 0000000..f564c55
--- /dev/null
+++ b/.github/workflows/linux_build.yml
@@ -0,0 +1,19 @@
+name: Linux Compile
+
+on:
+ push:
+ branches: [ "*" ]
+ pull_request:
+ branches: [ "master" ]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - name: Install dependencies
+ run: sudo apt-get install cmake ninja-build libbz2-dev
+ - name: Build
+ run: |
+ cmake -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE=Debug
+ cmake --build build-cmake -j \ No newline at end of file