summaryrefslogtreecommitdiff
path: root/.github/workflows/build.yaml
diff options
context:
space:
mode:
authorTazyFoundSoup <gardendistrict0x0@outlook.com>2026-04-15 17:31:59 +1000
committerTazyFoundSoup <gardendistrict0x0@outlook.com>2026-04-15 17:31:59 +1000
commit7106141e65f2e358248d0766118cd389d7eb4cb1 (patch)
tree01f953553377468a6cddb557774b80d8633e36a1 /.github/workflows/build.yaml
parent9bf501f556708ce979fc767ee0dc545ea51e75c8 (diff)
feat(ci/cd): More CI/CD
Diffstat (limited to '.github/workflows/build.yaml')
-rw-r--r--.github/workflows/build.yaml30
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
new file mode 100644
index 0000000..54bc5b0
--- /dev/null
+++ b/.github/workflows/build.yaml
@@ -0,0 +1,30 @@
+name: build
+
+on:
+ push:
+ branches: [ "master" ]
+ pull_request:
+ branches: [ "master" ]
+
+jobs:
+ build:
+ name: ${{ matrix.os }} / ${{ matrix.cc }}
+ runs-on: ${{ matrix.os }}
+ strategy:
+ fail-fast: false
+ matrix:
+ include:
+ - os: ubuntu-latest
+ cc: gcc
+ - os: ubuntu-latest
+ cc: clang
+ - os: macos-latest
+ cc: clang
+ - os: windows-latest
+ cc: gcc
+
+ steps:
+ - uses: actions/checkout@v4
+
+ - name: Build
+ run: make CC=${{ matrix.cc }} USE_HOSTED=1