Skip to content

Commit

Permalink
More CDash url changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hkaiser committed Feb 23, 2024
1 parent 0bf552a commit b413217
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .jenkins/common/set_github_status.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ curl --verbose \
--url "https://api.github.com/repos/${commit_repo}/statuses/${commit_sha}" \
--header 'Content-Type: application/json' \
--header "authorization: Bearer ${github_token}" \
--data "{ \"state\": \"${commit_status}\", \"target_url\": \"https://cdash.cscs.ch/build/${build_id}\", \"description\": \"Jenkins\", \"context\": \"${context}/${configuration_name}\" }"
--data "{ \"state\": \"${commit_status}\", \"target_url\": \"https://cdash.rostam.cct.lsu.edu/build/${build_id}\", \"description\": \"Jenkins\", \"context\": \"${context}/${configuration_name}\" }"
15 changes: 12 additions & 3 deletions CTestConfig.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Copyright (c) 2014 Thomas Heller
# Copyright (c) 2024 Hartmut Kaiser
#
# SPDX-License-Identifier: BSL-1.0
# Distributed under the Boost Software License, Version 1.0. (See accompanying
Expand All @@ -14,6 +15,14 @@
set(CTEST_PROJECT_NAME "HPX")
set(CTEST_NIGHTLY_START_TIME "00:00:00 GMT")

set(CTEST_SUBMIT_URL
"https://https://cdash.rostam.cct.lsu.edu//submit.php?project=${CTEST_PROJECT_NAME}"
)
if(CMAKE_VERSION VERSION_GREATER 3.14)
set(CTEST_SUBMIT_URL
"https://cdash.rostam.cct.lsu.edu//submit.php?project=${CTEST_PROJECT_NAME}"
)
else()
set(CTEST_DROP_METHOD "https")
set(CTEST_DROP_SITE "cdash.rostam.cct.lsu.edu")
set(CTEST_DROP_LOCATION "/submit.php?project=${CTEST_PROJECT_NAME}")
endif()

set(CTEST_DROP_SITE_CDASH TRUE)
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ If you would like to work with the cutting edge version of this repository
<https://hpx-docs.stellar-group.org/branches/master/html/index.html>`_.
We strongly recommend that you follow the current health status of the master
branch by looking at our `continuous integration results website
<https://cdash.cscs.ch//index.php?project=HPX>`_. While we try to keep the
<https://cdash.rostam.cct.lsu.edu/index.php?project=HPX>`_. While we try to keep the
master branch stable and usable, sometimes new bugs trick their way into the
code base. The `CircleCI <https://circleci.com/gh/STEllAR-GROUP/hpx>`_
continuous integration service additionally tracks the current build status for
Expand Down
2 changes: 1 addition & 1 deletion cmake/templates/conf.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ rst_prolog += '''
.. |hpx_circleci| replace:: CircleCI HPX dashboard
.. _hpx_circleci: https://circleci.com/gh/STEllAR-GROUP/hpx
.. |hpx_cdash| replace:: CDash HPX dashboard
.. _hpx_cdash: https://cdash.cscs.ch/index.php?project=HPX
.. _hpx_cdash: https://cdash.rostam.cct.lsu.edu/index.php?project=HPX
.. |support| replace:: Support Website
.. _support: https://stellar.cct.lsu.edu/support/
.. |hpx_zenodo| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.598202.svg
Expand Down

0 comments on commit b413217

Please sign in to comment.