Trying removing recipes #197
Workflow file for this run
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: Check magix3d | |
on: | |
[push, pull_request] | |
jobs: | |
main: | |
name: ${{ matrix.config }} | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/lihpc-computational-geometry/spack-cgcore:latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 # seems to be needed by codecov | |
submodules: recursive | |
- name: Initialize the environment | |
shell: bash | |
run: | | |
source /spack/share/spack/setup-env.sh | |
spack repo add $GITHUB_WORKSPACE/meshing | |
spack repo add $GITHUB_WORKSPACE/meshing_supersede | |
- name: Build and install | |
shell: bash | |
run: | | |
source /spack/share/spack/setup-env.sh | |
spack clean -a | |
spack env activate -V meshing-env | |
spack add magix3d~smooth3d~pythonaddon+doc ^vtk-maillage~opengl2+qt ^qt+opengl | |
spack install -v --no-checksum |