Skip to content

Commit

Permalink
Update the problem matcher config
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseTG committed Jul 4, 2023
1 parent 2f26ae9 commit cb8ba2d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build-linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ jobs:
- name: Configure
working-directory: "${{ env.BUILD_DIR }}"
run: cmake "$GITHUB_WORKSPACE" -DMELONDS_REPOSITORY_URL:STRING="${{ matrix.repo }}" -DMELONDS_REPOSITORY_TAG:STRING="${{ matrix.commit }}"
- name: Install GCC problem matcher
uses: root-project/gcc-problem-matcher-improved@9d83f12b27a78210f0485fb188e08d94fa807a6d
with:
build-directory: ${{ github.workspace }}
- name: Build
working-directory: "${{ env.BUILD_DIR }}"
run: make -j$(nproc --all)
Expand Down Expand Up @@ -95,6 +99,8 @@ jobs:
run: cmake "$GITHUB_WORKSPACE" -DMELONDS_REPOSITORY_URL:STRING="${{ matrix.repo }}" -DMELONDS_REPOSITORY_TAG:STRING="${{ matrix.commit }}"
- name: Install GCC problem matcher
uses: root-project/gcc-problem-matcher-improved@9d83f12b27a78210f0485fb188e08d94fa807a6d
with:
build-directory: ${{ env.BUILD_DIR }}
- name: Build
working-directory: "${{ env.BUILD_DIR }}"
run: make -j$(nproc --all)
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/build-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ jobs:
run: cmake "$GITHUB_WORKSPACE" -DMELONDS_REPOSITORY_URL:STRING="${{ matrix.repo }}" -DMELONDS_REPOSITORY_TAG:STRING="${{ matrix.commit }}" -DCMAKE_OSX_ARCHITECTURES:STRING="arm64;x86_64"
- name: Install GCC problem matcher
uses: root-project/gcc-problem-matcher-improved@9d83f12b27a78210f0485fb188e08d94fa807a6d
with:
build-directory: ${{ env.BUILD_DIR }}
- name: Build
working-directory: "${{ env.BUILD_DIR }}"
run: make -j$(sysctl -n hw.logicalcpu)
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/build-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ jobs:
run: cmake "$GITHUB_WORKSPACE" -G"MinGW Makefiles" -DMELONDS_REPOSITORY_URL:STRING="${{ matrix.repo }}" -DMELONDS_REPOSITORY_TAG:STRING="${{ matrix.commit }}"
- name: Install GCC problem matcher
uses: root-project/gcc-problem-matcher-improved@9d83f12b27a78210f0485fb188e08d94fa807a6d
with:
build-directory: ${{ env.BUILD_DIR }}
- name: Build
working-directory: "${{ env.BUILD_DIR }}"
run: mingw32-make -j$(nproc --all)
Expand Down

0 comments on commit cb8ba2d

Please sign in to comment.