branches: [ tizen ]
jobs:
+ prebuild:
+ runs-on: [ code-linux, code-large ]
+
+ steps:
+ - name: Clone your repository
+ uses: CODE-Actions/checkout@v2
+ with:
+ ref: ${{ github.event.pull_request.head.sha }}
+ - name: Run clang-format style check for C/C++
+ uses: CODE-Actions/cpp-linter-cpp-linter-action@v2
+ env:
+ GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }}
+ with:
+ style: file
+ lines-changed-only: true
+ thread-comments: true
+
build:
# CODE-hosted runner
runs-on: [ code-linux, code-large ]
+ needs: prebuild
strategy:
matrix:
arch: ['aarch64', 'armv7l', 'x86_64']