summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/system-ci.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/system-ci.yml b/.github/workflows/system-ci.yml
new file mode 100644
index 0000000..3027a43
--- /dev/null
+++ b/.github/workflows/system-ci.yml
@@ -0,0 +1,22 @@
+name: System CI
+
+on:
+ push:
+ branches: [ "stable" ]
+ pull_request:
+ branches: [ "stable" ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v4
+ - name: Install Packages
+ run: sudo apt-get install libboost-all-dev
+ - name: Build SuperNE
+ run: |
+ cd sbin
+ mkdir build
+ cd build \ No newline at end of file