Skip to content

Commit

Permalink
Update verbosity to debug Intel oneAPI builds
Browse files Browse the repository at this point in the history
Signed-off-by: Quincey Koziol <[email protected]>
  • Loading branch information
qkoziol committed Apr 14, 2024
1 parent b3e4587 commit 270bd4b
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 76 deletions.
152 changes: 76 additions & 76 deletions .github/workflows/autotools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,87 +27,87 @@ permissions:
# in parallel. We just have one job, but the matrix items defined below will
# run in parallel.
jobs:
call-workflow-special-autotools:
name: "Autotools Special Workflows"
uses: ./.github/workflows/main-auto-spc.yml

call-parallel-special-autotools:
name: "Autotools Parallel Special Workflows"
uses: ./.github/workflows/main-auto-par-spc.yml

call-debug-parallel-autotools:
name: "Autotools Parallel Workflows"
uses: ./.github/workflows/main-auto-par.yml
with:
build_mode: "debug"

call-release-parallel-autotools:
name: "Autotools Parallel Workflows"
uses: ./.github/workflows/main-auto-par.yml
with:
build_mode: "production"

call-debug-thread-autotools:
name: "Autotools Debug Thread-Safety Workflows"
uses: ./.github/workflows/main-auto.yml
with:
thread_safety: enable
build_mode: "debug"

call-release-thread-autotools:
name: "Autotools Release Thread-Safety Workflows"
uses: ./.github/workflows/main-auto.yml
with:
thread_safety: enable
build_mode: "production"

call-debug-autotools:
name: "Autotools Debug Workflows"
uses: ./.github/workflows/main-auto.yml
with:
thread_safety: disable
build_mode: "debug"

call-release-autotools:
name: "Autotools Release Workflows"
uses: ./.github/workflows/main-auto.yml
with:
thread_safety: disable
build_mode: "production"

# call-workflow-special-autotools:
# name: "Autotools Special Workflows"
# uses: ./.github/workflows/main-auto-spc.yml
#
# call-parallel-special-autotools:
# name: "Autotools Parallel Special Workflows"
# uses: ./.github/workflows/main-auto-par-spc.yml
#
# call-debug-parallel-autotools:
# name: "Autotools Parallel Workflows"
# uses: ./.github/workflows/main-auto-par.yml
# with:
# build_mode: "debug"
#
# call-release-parallel-autotools:
# name: "Autotools Parallel Workflows"
# uses: ./.github/workflows/main-auto-par.yml
# with:
# build_mode: "production"
#
# call-debug-thread-autotools:
# name: "Autotools Debug Thread-Safety Workflows"
# uses: ./.github/workflows/main-auto.yml
# with:
# thread_safety: enable
# build_mode: "debug"
#
# call-release-thread-autotools:
# name: "Autotools Release Thread-Safety Workflows"
# uses: ./.github/workflows/main-auto.yml
# with:
# thread_safety: enable
# build_mode: "production"
#
# call-debug-autotools:
# name: "Autotools Debug Workflows"
# uses: ./.github/workflows/main-auto.yml
# with:
# thread_safety: disable
# build_mode: "debug"
#
# call-release-autotools:
# name: "Autotools Release Workflows"
# uses: ./.github/workflows/main-auto.yml
# with:
# thread_safety: disable
# build_mode: "production"
#
call-release-auto-intel:
name: "Autotools Intel Workflows"
uses: ./.github/workflows/intel-auto.yml
with:
build_mode: "production"

call-release-auto-nvhpc:
name: "Autotools nvhpc Workflows"
uses: ./.github/workflows/nvhpc-auto.yml
with:
build_mode: "production"

call-release-auto-aocc:
name: "Autotools aocc Workflows"
uses: ./.github/workflows/aocc-auto.yml
with:
build_mode: "production"

call-release-auto-cygwin:
name: "Autotools Cygwin Workflows"
uses: ./.github/workflows/cygwin-auto.yml
with:
build_mode: "production"

call-release-auto-julia:
name: "Autotools Julia Workflows"
uses: ./.github/workflows/julia-auto.yml
with:
build_mode: "production"

call-release-auto-xpr:
name: "Autotools TestExpress Workflows"
uses: ./.github/workflows/testxpr-auto.yml
# call-release-auto-nvhpc:
# name: "Autotools nvhpc Workflows"
# uses: ./.github/workflows/nvhpc-auto.yml
# with:
# build_mode: "production"
#
# call-release-auto-aocc:
# name: "Autotools aocc Workflows"
# uses: ./.github/workflows/aocc-auto.yml
# with:
# build_mode: "production"
#
# call-release-auto-cygwin:
# name: "Autotools Cygwin Workflows"
# uses: ./.github/workflows/cygwin-auto.yml
# with:
# build_mode: "production"
#
# call-release-auto-julia:
# name: "Autotools Julia Workflows"
# uses: ./.github/workflows/julia-auto.yml
# with:
# build_mode: "production"
#
# call-release-auto-xpr:
# name: "Autotools TestExpress Workflows"
# uses: ./.github/workflows/testxpr-auto.yml

# workflow-msys2-autotools:
# name: "CMake msys2 Workflows"
Expand All @@ -116,4 +116,4 @@ jobs:
# build_mode: "production"
# build_option: "--enable-production"



1 change: 1 addition & 0 deletions test/ttsafe.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ main(int argc, char *argv[])

/* Initialize testing framework */
TestInit(argv[0], NULL, NULL);
SetTestVerbosity(VERBO_HI);

/* Tests are generally arranged from least to most complexity... */
AddTest("is_threadsafe", tts_is_threadsafe, NULL, "library threadsafe status", NULL);
Expand Down

0 comments on commit 270bd4b

Please sign in to comment.