diff options
| author | Amlal El Mahrouss <113760121+amlel-el-mahrouss@users.noreply.github.com> | 2025-03-20 05:20:41 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-20 05:20:41 +0100 |
| commit | 9cd5f25109972a0bbabf82145115e2062cb045a8 (patch) | |
| tree | 09e196e4af9561e8ee92dc9ea3e315a9612082ce /.github | |
| parent | 705d46811e1aba4a11149f3663bd7fd09f868408 (diff) | |
Create c-cpp.yml
Setup Build CI
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/c-cpp.yml | 20 |
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 |
