Skip to content

Commit

Permalink
Debugging: skip manually
Browse files Browse the repository at this point in the history
  • Loading branch information
EZoni committed Nov 18, 2024
1 parent 88880e1 commit 3b85465
Show file tree
Hide file tree
Showing 9 changed files with 42 additions and 21 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/clang_sanitizers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ jobs:
name: Clang UB sanitizer
runs-on: ubuntu-22.04
container: ubuntu:23.10
if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
env:
CC: clang
CXX: clang++
Expand Down Expand Up @@ -84,7 +85,8 @@ jobs:
name: Clang thread sanitizer
runs-on: ubuntu-22.04
container: ubuntu:23.10
if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
env:
CC: clang
CXX: clang++
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/clang_tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:
name: clang-tidy-${{ matrix.dim }}D
runs-on: ubuntu-22.04
timeout-minutes: 180
if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
steps:
- uses: actions/checkout@v4
- name: install dependencies
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
permissions:
actions: read
contents: read
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:
build_nvcc:
name: NVCC 11.3 SP
runs-on: ubuntu-20.04
if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
env:
CXXFLAGS: "-Werror"
CMAKE_GENERATOR: Ninja
Expand Down Expand Up @@ -113,7 +114,8 @@ jobs:
build_nvcc_gnumake:
name: NVCC 11.8.0 GNUmake
runs-on: ubuntu-20.04
if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
steps:
- uses: actions/checkout@v4
- name: install dependencies
Expand Down Expand Up @@ -147,7 +149,8 @@ jobs:
build_nvhpc24-1-nvcc:
name: NVHPC@24.1 NVCC/NVC++ Release [tests]
runs-on: ubuntu-20.04
if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
#env:
# # For NVHPC, Ninja is slower than the default:
# CMAKE_GENERATOR: Ninja
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/hip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
env:
CXXFLAGS: "-Werror -Wno-deprecated-declarations -Wno-error=pass-failed"
CMAKE_GENERATOR: Ninja
if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
steps:
- uses: actions/checkout@v4
- name: install dependencies
Expand Down Expand Up @@ -80,7 +81,8 @@ jobs:
env:
CXXFLAGS: "-Werror -Wno-deprecated-declarations -Wno-error=pass-failed"
CMAKE_GENERATOR: Ninja
if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
steps:
- uses: actions/checkout@v4
- name: install dependencies
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/insitu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ jobs:
sensei:
name: SENSEI
runs-on: ubuntu-20.04
if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
env:
CXX: clang++
CC: clang
Expand All @@ -43,7 +44,8 @@ jobs:
ascent:
name: Ascent
runs-on: ubuntu-20.04
if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
env:
CXX: g++
CC: gcc
Expand Down Expand Up @@ -83,7 +85,8 @@ jobs:
catalyst:
name: Catalyst
runs-on: ubuntu-22.04
if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
env:
CXX: g++
CC: gcc
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/intel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
build_icc:
name: oneAPI ICC SP&DP
runs-on: ubuntu-20.04
if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
# For oneAPI, Ninja is slower than the default:
#env:
# CMAKE_GENERATOR: Ninja
Expand Down Expand Up @@ -87,7 +88,8 @@ jobs:
CXXFLAGS: "-Werror -Wno-error=pass-failed -Wno-tautological-constant-compare"
# For oneAPI, Ninja is slower than the default:
# CMAKE_GENERATOR: Ninja
if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
steps:
- uses: actions/checkout@v4
- name: install dependencies
Expand Down Expand Up @@ -151,7 +153,8 @@ jobs:
CXXFLAGS: "-Werror -Wno-tautological-constant-compare"
# For oneAPI, Ninja is slower than the default:
# CMAKE_GENERATOR: Ninja
if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
steps:
- uses: actions/checkout@v4
- name: install dependencies
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ jobs:
build_appleclang:
name: AppleClang
runs-on: macos-latest
if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
env:
CXXFLAGS: "-Werror -Wno-error=pass-failed"
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: TRUE
Expand Down
15 changes: 10 additions & 5 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ jobs:
build_cxxminimal:
name: GCC Minimal w/o MPI
runs-on: ubuntu-20.04
if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
env:
CXXFLAGS: "-Werror"
steps:
Expand Down Expand Up @@ -55,7 +56,8 @@ jobs:
build_1D_2D:
name: GCC 1D & 2D w/ MPI, QED tools
runs-on: ubuntu-22.04
if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
env:
CXXFLAGS: "-Werror"
CXX: "g++-12"
Expand Down Expand Up @@ -102,7 +104,8 @@ jobs:
build_3D_sp:
name: GCC 3D & RZ w/ MPI, single precision
runs-on: ubuntu-22.04
if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
env:
CXX: "g++-12"
CC: "gcc-12"
Expand Down Expand Up @@ -149,7 +152,8 @@ jobs:
build_gcc_ablastr:
name: GCC ABLASTR w/o MPI
runs-on: ubuntu-20.04
if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
env:
CMAKE_GENERATOR: Ninja
CXXFLAGS: "-Werror"
Expand Down Expand Up @@ -185,7 +189,8 @@ jobs:
build_pyfull:
name: Clang pywarpx
runs-on: ubuntu-20.04
if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
if: 0
#if: ${{ github.event.pull_request.draft == false && github.event.workflow_run.outputs.skip == "false" }}
env:
CC: clang
CXX: clang++
Expand Down

0 comments on commit 3b85465

Please sign in to comment.