Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: GitHub noreply@github.com Date: Sun, 16 Apr 2023 14:29:31 UTC Commit: 83b8f7be0567757e74bd33d479f80a31c18f8a78 https://github.com/geany/geany/commit/83b8f7be0567757e74bd33d479f80a31c18f8a...
Log Message: ----------- Merge pull request #3432 from eht16/ci_enable_parallel_make_jobs
CI: Define JOBS environment variable and use it for make
Modified Paths: -------------- .github/workflows/build.yml
Modified: .github/workflows/build.yml 7 lines changed, 4 insertions(+), 3 deletions(-) =================================================================== @@ -23,6 +23,7 @@ env: CCACHE_COMPRESS: true CCACHE_MAXSIZE: 1G PYTHON: python3 + JOBS: 2 DEBUG: 0
jobs: @@ -87,17 +88,17 @@ jobs: - name: Build run: | cd _build - make + make -j ${{ env.JOBS }}
- name: Run Tests run: | cd _build - make -j2 check + make -j ${{ env.JOBS }} check
- name: Run distcheck run: | cd _build - make -j2 distcheck DISTCHECK_CONFIGURE_FLAGS="$CONFIGURE_FLAGS"; + make -j ${{ env.JOBS }} distcheck DISTCHECK_CONFIGURE_FLAGS="$CONFIGURE_FLAGS";
- name: ccache statistics run: ccache --show-stats
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).