summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/c-cpp.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/c-cpp.yml')
-rw-r--r--.github/workflows/c-cpp.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml
new file mode 100644
index 00000000..02ec9881
--- /dev/null
+++ b/.github/workflows/c-cpp.yml
@@ -0,0 +1,20 @@
+name: C/C++ CI
+
+on:
+ push:
+ branches: [ "master" ]
+ pull_request:
+ branches: [ "master" ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v4
+ - name: APT
+ run: apt-get install mingw32
+ - name: Build
+ run: make
+ - name: cd dev/Kernel && make -f amd64-desktop.make all && cd ../../ && cd dev/Boot && make -f amd64-desktop.make all