Skip to content

Commit

Permalink
Merge pull request #2913 from chuckatkins/fix-ci
Browse files Browse the repository at this point in the history
Fix Azure CI pipelines
  • Loading branch information
Chuck Atkins authored Oct 20, 2021
2 parents dbb0ee6 + bec1e60 commit 61f0e85
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
8 changes: 5 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ resources:

jobs:
- job: windows
timeoutInMinutes: 90
timeoutInMinutes: 120
strategy:
matrix:
win2016_vs2017:
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
name: Test

- job: macos
timeoutInMinutes: 90
timeoutInMinutes: 120
strategy:
matrix:
macos1014_xcode103_ninja:
Expand All @@ -71,13 +71,15 @@ jobs:
name: Test

- job: linux
timeoutInMinutes: 90
timeoutInMinutes: 120
strategy:
matrix:
el7_intel_ohpc:
containerResource: el7-intel-ohpc
el7_intel_openmpi_ohpc:
containerResource: el7-intel-openmpi-ohpc
pool:
vmImage: 'ubuntu-latest'
container: $[ variables['containerResource'] ]
steps:
- bash: scripts/ci/azure/linux-setup.sh
Expand Down
1 change: 1 addition & 0 deletions scripts/ci/cmake/ci-power8-el7-pgi-smpi.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ set(CTEST_TEST_ARGS
PARALLEL_LEVEL 1
INCLUDE "^(Interface|Install)"
)
set(CTEST_TEST_TIMEOUT 300)
set(CTEST_CMAKE_GENERATOR "Unix Makefiles")
list(APPEND CTEST_UPDATE_NOTES_FILES "${CMAKE_CURRENT_LIST_FILE}")
include(${CMAKE_CURRENT_LIST_DIR}/ci-common.cmake)
1 change: 1 addition & 0 deletions scripts/ci/cmake/ci-power8-el7-pgi.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ ADIOS2_USE_ZFP:BOOL=ON
set(CTEST_TEST_ARGS
INCLUDE "^(Interface|Install)"
)
set(CTEST_TEST_TIMEOUT 300)
set(CTEST_CMAKE_GENERATOR "Unix Makefiles")
list(APPEND CTEST_UPDATE_NOTES_FILES "${CMAKE_CURRENT_LIST_FILE}")
include(${CMAKE_CURRENT_LIST_DIR}/ci-common.cmake)
1 change: 1 addition & 0 deletions scripts/ci/cmake/ci-power8-el7-xl-smpi.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ set(CTEST_TEST_ARGS
PARALLEL_LEVEL 1
INCLUDE "^(Interface|Install)"
)
set(CTEST_TEST_TIMEOUT 300)
set(CTEST_CMAKE_GENERATOR "Unix Makefiles")
list(APPEND CTEST_UPDATE_NOTES_FILES "${CMAKE_CURRENT_LIST_FILE}")
include(${CMAKE_CURRENT_LIST_DIR}/ci-common.cmake)
1 change: 1 addition & 0 deletions scripts/ci/cmake/ci-power8-el7-xl.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ ADIOS2_USE_ZFP:BOOL=ON
set(CTEST_TEST_ARGS
INCLUDE "^(Interface|Install)"
)
set(CTEST_TEST_TIMEOUT 300)
set(CTEST_CMAKE_GENERATOR "Unix Makefiles")
list(APPEND CTEST_UPDATE_NOTES_FILES "${CMAKE_CURRENT_LIST_FILE}")
include(${CMAKE_CURRENT_LIST_DIR}/ci-common.cmake)
2 changes: 1 addition & 1 deletion scripts/dashboard/adios_common.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ if(NOT dashboard_git_url)
endif()

if(NOT DEFINED CTEST_TEST_TIMEOUT)
set(CTEST_TEST_TIMEOUT 300)
set(CTEST_TEST_TIMEOUT 120)
endif()
if(NOT DEFINED CTEST_SUBMIT_NOTES)
set(CTEST_SUBMIT_NOTES TRUE)
Expand Down

0 comments on commit 61f0e85

Please sign in to comment.