Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: Enrico Tröger enrico.troeger@uvena.de Date: Sun, 19 Mar 2023 14:15:26 UTC Commit: 1ac3580a8be5e6a05194a28ddb93209ec6e5d585 https://github.com/geany/geany/commit/1ac3580a8be5e6a05194a28ddb93209ec6e5d5...
Log Message: ----------- 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).