Skip to content

Commit

Permalink
Decouple just installation in the CI actions
Browse files Browse the repository at this point in the history
  • Loading branch information
tvami committed Sep 18, 2024
1 parent a4f4285 commit 6d7cf05
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/basic_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@ jobs:
with:
submodules: 'recursive'

- name: Compile and Install ldmx-sw
- name : Install just
uses: extractions/setup-just@v2
with:
just-version: 1.26.0
just-version: 1.26.0

- name: Compile and Install ldmx-sw
run: |
just install-denv init configure-force-error
just build
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/compile_clang_lto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@ jobs:
with:
submodules: 'recursive'

- name: Compile and Install ldmx-sw
- name : Install just
uses: extractions/setup-just@v2
with:
just-version: 1.26.0
just-version: 1.26.0

- name: Compile and Install ldmx-sw
run: |
just install-denv init configure-clang-lto
just build
4 changes: 3 additions & 1 deletion .github/workflows/pr_validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,12 @@ jobs:
submodules: 'recursive'
fetch-depth: 0

- name: Compile and Install ldmx-sw
- 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-force-error
just build
Expand Down

0 comments on commit 6d7cf05

Please sign in to comment.