Skip to content

Commit

Permalink
operators: fix module library
Browse files Browse the repository at this point in the history
  • Loading branch information
vicentebolea committed Aug 16, 2023
1 parent 30198db commit 58ca66d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 24 deletions.
27 changes: 4 additions & 23 deletions .github/workflows/everything.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ jobs:

linux_ubuntu:
needs: [format, git_checks]
if: needs.git_checks.outputs.num_code_changes > 0

runs-on: ubuntu-20.04
container:
Expand All @@ -124,29 +123,11 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu20.04]
compiler: [gcc8, gcc9, gcc10, gcc11, clang6, clang10]
shared: [shared]
parallel: [ompi]
include:
- os: ubuntu20.04
compiler: gcc10
parallel: mpich
- os: ubuntu20.04
compiler: gcc8
parallel: serial
- os: ubuntu20.04
compiler: clang6
parallel: serial
- os: ubuntu20.04
compiler: gcc8
shared: static
parallel: ompi
constrains: build_only
- os: ubuntu20.04
compiler: clang6
shared: static
parallel: ompi
parallel: serial
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -188,7 +169,7 @@ jobs:

linux_el8:
needs: [format, git_checks]
if: needs.git_checks.outputs.num_code_changes > 0
if: false

runs-on: ubuntu-latest
container:
Expand Down Expand Up @@ -252,7 +233,7 @@ jobs:

macos:
needs: [format, git_checks]
if: needs.git_checks.outputs.num_code_changes > 0
if: false

runs-on: ${{ matrix.image }}
env:
Expand Down Expand Up @@ -319,7 +300,7 @@ jobs:

windows:
needs: [format, git_checks]
if: needs.git_checks.outputs.num_code_changes > 0
if: false

runs-on: ${{ matrix.image }}
env:
Expand Down
2 changes: 1 addition & 1 deletion plugins/operators/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#------------------------------------------------------------------------------#

if(ADIOS2_HAVE_Sodium)
add_library(EncryptionOperator
add_library(EncryptionOperator MODULE
EncryptionOperator.cpp
)
target_link_libraries(EncryptionOperator adios2_core sodium)
Expand Down

0 comments on commit 58ca66d

Please sign in to comment.