Skip to content

Commit

Permalink
exclude non-applicable CI
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Baentsch <57787676+baentsch@users.noreply.github.com>
  • Loading branch information
baentsch committed Dec 9, 2024
1 parent e38fea8 commit d33f60d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,9 @@ jobs:
workflows:
version: 2.1
build:
when:
and:
- not equal: [ dtls-1.3 , << pipeline.git.branch >> ]
jobs:
- macOS:
name: macOS-noopenssl
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
CXX: "clang++"
ASAN_C_FLAGS: "-fsanitize=address -fno-omit-frame-pointer"
ASAN_OPTIONS: "detect_stack_use_after_return=1,detect_leaks=1"
OPENSSL_BRANCH: "openssl-3.3.2"
OPENSSL_BRANCH: "feature/dtls-1.3"
steps:
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # pin@v4
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
container:
image: openquantumsafe/ci-ubuntu-jammy:latest
env:
OPENSSL_BRANCH: "master"
OPENSSL_BRANCH: "feature/dtls-1.3"
INSTALL_DIR: "/opt/install"
CMAKE_TOOLCHAIN_FILE: "/opt/linux-aarch64-toolchain.cmake"

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: MacOS tests

on: [pull_request, push]
# Disable for DTLS1.3 for now (TODO)
# on: [pull_request, push]

permissions:
contents: read
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Windows tests

on: [pull_request, push]
# Disable for DTLS1.3 for now (TODO)
#on: [pull_request, push]

permissions:
contents: read
Expand Down

0 comments on commit d33f60d

Please sign in to comment.