Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/cache-save/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ runs:
steps:
- name: cache ucesb
id: cache-ucesb
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: |
${{ env.UCESB_DIR }}
Expand All @@ -25,7 +25,7 @@ runs:
- name: cache r3b
if: matrix.save != 'false'
id: cache-r3b
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: .ccache
key: r3b-build-${{ inputs.cache-name }}-${{ inputs.r3b-dev-key }}
18 changes: 7 additions & 11 deletions .github/actions/ctest-cdash/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,11 @@ runs:
- name: running ctest
run: |
source $GITHUB_WORKSPACE/util/generate_geo_test.sh
if [[ "${{ matrix.os }}" != "debian10" ]]; then
echo "Running ctest on ${{ matrix.os }} "
ctest -S cmake/CI_CD/CDash.cmake -DBUILD_J=${NUM_THREADS}\
-DTEST_MODEL=${TEST_MODEL}\
-DTEST_NAME=${{ env.TEST_NAME }}\
-DSITE_NAME="Github hosted (${{ github.repository }})"\
--force-new-ctest-process \
-V -E "(run_gen_sim|run_digi|run_aladin_digi|califasim2|landreco|elsim)"
else
echo "Skipping ctest for debian10"
fi
echo "Running ctest on ${{ matrix.os }} "
ctest -S cmake/CI_CD/CDash.cmake -DBUILD_J=${NUM_THREADS}\
-DTEST_MODEL=${TEST_MODEL}\
-DTEST_NAME=${{ env.TEST_NAME }}\
-DSITE_NAME="Github hosted (${{ github.repository }})"\
--force-new-ctest-process \
-V -E "(run_gen_sim|run_digi|run_aladin_digi|califasim2|landreco|elsim)"
shell: bash
4 changes: 2 additions & 2 deletions .github/actions/install-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ runs:
- name: cache ucesb
if: github.event_name == 'pull_request'
id: cache-ucesb
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: |
${{ env.UCESB_DIR }}
Expand All @@ -27,7 +27,7 @@ runs:
- name: cache r3b
if: inputs.cache-name != 'false' && github.event_name == 'pull_request'
id: cache-r3b
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: .ccache
key: r3b-build-${{ inputs.cache-name }}-${{ inputs.r3b-dev-key }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Try updating metadata
run: python update_zenodo.py
- name: Check for Updates
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
# r3broot. Each group is used by only one job.
repos: [ sofia ]
os: [ debian11, debian12 ]
fsv: [ jan24p1 ]
fsv: [ jan24p5 ]
cpp: [ 17 ]
include:
- preset: simple
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
# another github repo or a self-defined one in .github/actions.
steps:
# Fetch updates from pull request branches using a public github action.
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
# This allows all commits of all branches to be fetched.
fetch-depth: 0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/static_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Code formatting
run: |
cd $GITHUB_WORKSPACE
sudo apt-get update
sudo apt-get install clang-format-15
./.clang-format-check.sh clang-format-15
sudo apt-get install clang-format-16
./.clang-format-check.sh clang-format-16
shell: bash