New Gold for Generated by release v4.1.4 (#1480) #75
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: Build with CLANG using LTO sanitizer | |
on: | |
push: | |
branches: '**' #all branches | |
tags: 'v*.*.*' #all version tags | |
env: | |
LDMX_DOCKER_TAG: ldmx/dev:latest | |
jobs: | |
build-clang-lto: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout ldmx-sw | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: Install just | |
uses: extractions/setup-just@v2 | |
with: | |
just-version: 1.26.0 | |
- name: Compile and Install ldmx-sw | |
run: | | |
just install-denv init configure-clang-lto | |
just build |