Skip to content

keep llvm

keep llvm #49

Workflow file for this run

name: Spack build
on:
push:
tags:
- '*'
branches:
- '*'
pull_request:
workflow_dispatch:
schedule:
- cron: "5 6 * * *"
jobs:
build_macos:
strategy:
fail-fast: false
matrix:
include:
- os: macos-14
xcode: "15.0.1"
compiler: "[email protected]"
publish: false
- os: macos-14
xcode: "16.0.0"
compiler: "[email protected]"
publish: true
- os: macos-15
xcode: "16.0.0"
compiler: "[email protected]"
publish: true
uses: ./.github/workflows/spack.yml
with:
os: ${{ matrix.os }}
xcode: ${{ matrix.xcode }}
secrets: inherit
build_native:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-22.04
compiler: [email protected]
publish: true
- os: ubuntu-24.04
compiler: [email protected]
publish: true
- os: ubuntu-24.04
compiler: [email protected]
publish: false
uses: ./.github/workflows/spack.yml
with:
os: ${{ matrix.os }}
secrets: inherit
build_container:
strategy:
fail-fast: false
matrix:
include:
- image: ghcr.io/acts-project/alma9-base:67
compiler: [email protected]
publish: true
uses: ./.github/workflows/spack.yml
with:
os: ubuntu-latest
image: ${{ matrix.image }}
secrets: inherit