fix build with CondaEnv #1983
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI-JUDI | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
# Trigger the workflow on push to master or pull request | |
# to be merged in master | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
name: JUDI base on Julia ${{ matrix.version }} - ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
env: | |
DEVITO_ARCH: ${{ matrix.cc }} | |
DEVITO_LANGUAGE: "openmp" | |
OMP_NUM_THREADS: 4 | |
JULIA_NUM_THREADS: 1 | |
GROUP: "JUDI" | |
strategy: | |
fail-fast: false | |
matrix: | |
version: ['lts', '1.7', '1.8', '1.9', '1.10'] | |
os: [ubuntu-latest] | |
arch: ['x64'] | |
cc: ['gcc-12'] | |
include: | |
- os: macos-15 | |
version: '1' | |
arch: ARM64 | |
cc: clang | |
steps: | |
- name: Checkout JUDI | |
uses: actions/checkout@v4 | |
- name: Setup julia | |
uses: julia-actions/setup-julia@v2 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- uses: julia-actions/cache@v2 | |
- name: Setup clang for osx | |
if: runner.os == 'macOS' | |
run: | | |
brew install llvm libomp | |
echo "/opt/homebrew/opt/llvm/bin" >> $GITHUB_PATH | |
- name: Build JUDI | |
uses: julia-actions/julia-buildpkg@latest | |
- name: Run tests | |
uses: julia-actions/julia-runtest@latest | |
with: | |
annotate: true | |
- uses: julia-actions/julia-processcoverage@v1 | |
- uses: codecov/codecov-action@v4 | |
with: | |
file: lcov.info | |
token: ${{ secrets.CODECOV_TOKEN }} |