Skip to content

Commit

Permalink
specify C/CXX compiler directly for CMTK
Browse files Browse the repository at this point in the history
  • Loading branch information
jefferis committed Oct 12, 2024
1 parent c926a42 commit 6cc5764
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
config:
- {os: macos-latest, r: 'release'}
- {os: windows-latest, r: 'release'}
- {os: ubuntu-latest, cc: clang, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, cc: clang, r: 'release', codecov: 'true'}
- {os: ubuntu-latest, cc: clang, r: 'oldrel-1'}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release', codecov: 'true'}
- {os: ubuntu-latest, r: 'oldrel-1'}

env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -51,7 +51,8 @@ jobs:
if: ${{matrix.config.os != 'windows-latest'}}
run: sh ./build-cmtk.sh
env:
CC: ${{ matrix.config.cc }}
CC: clang
CXX: clang++
MAKEFLAGS: "-j2"

- uses: r-lib/actions/check-r-package@v2
Expand Down

0 comments on commit 6cc5764

Please sign in to comment.