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
8 changes: 7 additions & 1 deletion .github/workflows/ghci-snl-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,13 @@ jobs:
python3 -m pip install --upgrade --trusted-host pypi.org cacts
- name: Run tests
run: |
cmd="cacts -m ghci-snl-gnu -t ${{ matrix.build_type }} -r ./"
# Determine if the scheduler flag should be included
if [ "${{ github.event_name }}" = "schedule" ]; then
extra_flags="-s"
else
extra_flags=""
fi
cmd="cacts -m ghci-snl-gnu -t ${{ matrix.build_type }} -r ./ $extra_flags"
echo "CACTS call: $cmd"
$cmd
- name: Upload files
Expand Down
4 changes: 4 additions & 0 deletions cacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@
project:
name: EKAT
ctest_error_exceptions: ["error_handler"]
cdash:
drop_site: "my.cdash.org"
drop_location: "/submit.php?project=E3SM"
build_prefix: "ekat_"

# NOTE: CACTS will also set project.root_dir at runtime, so you can actually use
# ${project.root_dir} in the machines/configurations sections
Expand Down
Loading