Skip to content

run macos ci on arm runner #791

run macos ci on arm runner

run macos ci on arm runner #791

Workflow file for this run

name: CI-examples
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:
list-examples:
runs-on: ubuntu-latest
strategy:
fail-fast: false
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- name: Checkout JUDI
uses: actions/checkout@v4
- id: set-matrix
run: echo "matrix=$(ls examples/scripts/*.jl examples/machine-learning/*.jl | xargs -n 1 | jq -R -s -c 'split("\n")[:-1]')" >> $GITHUB_OUTPUT
shell: bash
run-examples:
runs-on: ubuntu-latest
needs: list-examples
name: ${{ matrix.example }}
env:
DEVITO_ARCH: gcc-12
DEVITO_LANGUAGE: "openmp"
DEVITO_LOGGING: "ERROR"
OMP_NUM_THREADS: 1
NITER: 2
strategy:
fail-fast: false
matrix:
example: ${{ fromJson(needs.list-examples.outputs.matrix) }}
version: ['1']
steps:
- name: Checkout JUDI
uses: actions/checkout@v4
- name: Setup julia
uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: x64
- name: Set julia python
run: |
python3 -m pip install -U pip
python3 -m pip install matplotlib seiscm colorcet
echo "PYTHON=$(which python3)" >> $GITHUB_ENV
julia -e 'using Pkg;Pkg.add(["PyCall", "PyPlot", "SlimPlotting"])'
- name: Build JUDI
uses: julia-actions/julia-buildpkg@latest
- name: Install packages
run: |
julia -e 'using Pkg;Pkg.add(["NLopt", "Flux", "JOLI", "Zygote", "IterativeSolvers", "SlimOptim", "HDF5", "SegyIO", "SetIntersectionProjection"])'
julia -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()))'
- name: Run examples
run: julia -p 2 -t 1 ${{ matrix.example }}