diff --git a/.github/workflows/pr-build-check.yml b/.github/workflows/pr-build-check.yml index be768e4..267b238 100644 --- a/.github/workflows/pr-build-check.yml +++ b/.github/workflows/pr-build-check.yml @@ -25,24 +25,24 @@ jobs: - name: Compile engine run: | - make clean all -C engine -j4 + make clean all -j4 -C engine - name: Compile tutorials run: | - make clean all -C tutorials/01-hello - make clean all -C tutorials/02-sprite - make clean all -C tutorials/03-minecraft - make clean all -C tutorials/04-de_dust2 - make clean all -C tutorials/05-animation - make clean all -C tutorials/06-audio - make clean all -C tutorials/07-lighting - make clean all -C tutorials/08-skybox-debug - make clean all -C tutorials/09-manual-mode - make clean all -C tutorials/10-sprite-sheet + make clean all -j4 -C tutorials/01-hello + make clean all -j4 -C tutorials/02-sprite + make clean all -j4 -C tutorials/03-minecraft + make clean all -j4 -C tutorials/04-de_dust2 + make clean all -j4 -C tutorials/05-animation + make clean all -j4 -C tutorials/06-audio + make clean all -j4 -C tutorials/07-lighting + make clean all -j4 -C tutorials/08-skybox-debug + make clean all -j4 -C tutorials/09-manual-mode + make clean all -j4 -C tutorials/10-sprite-sheet - name: Compile demo run: | - make clean all -C demo + make clean all -j4 -C demo - name: Get short SHA id: slug diff --git a/.github/workflows/pr-format-check.yml b/.github/workflows/pr-format-check.yml index e795c15..075e80d 100644 --- a/.github/workflows/pr-format-check.yml +++ b/.github/workflows/pr-format-check.yml @@ -27,10 +27,6 @@ jobs: runs-on: ubuntu-latest steps: - - name: Install Node - run: | - apt-get update -y - apt-get install -y nodejs - uses: actions/checkout@v2 - uses: DoozyX/clang-format-lint-action@v0.12 with: