diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/c-cpp-dev.yml | 19 | ||||
| -rw-r--r-- | .github/workflows/c-cpp.yml | 2 |
2 files changed, 20 insertions, 1 deletions
diff --git a/.github/workflows/c-cpp-dev.yml b/.github/workflows/c-cpp-dev.yml new file mode 100644 index 0000000..e2ba91f --- /dev/null +++ b/.github/workflows/c-cpp-dev.yml @@ -0,0 +1,19 @@ +name: C/C++ CI (Develop,Clang++) + +on: + push: + branches: [ "develop" ] + pull_request: + branches: [ "develop" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Install Packages + run: sudo apt update && sudo apt install build-essential + - name: Build NeBuild + run: make build-nebuild
\ No newline at end of file diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 5bd4c24..d03c7df 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -1,4 +1,4 @@ -name: C/C++ CI +name: C/C++ CI (Stable,Clang++) on: push: |
