pnoltes commented on a change in pull request #228:
URL: https://github.com/apache/celix/pull/228#discussion_r422537070
##########
File path: .github/workflows/macos-nightly.yml
##########
@@ -0,0 +1,40 @@
+name: Celix MacOS Nightly
+
+on:
+ schedule:
+ - cron: '0 0 * * *'
+
+jobs:
+ build:
+ runs-on: ${{ matrix.os }}
+ strategy:
+ fail-fast: false
+ matrix:
+ os: [macOS-latest]
+ compiler: [clang]
+ timeout-minutes: 120
+ steps:
+ - name: Checkout source code
+ uses: actions/checkout@master
+ - name: Install dependencies
+ run: |
+ brew update
+ brew install lcov zeromq czmq openssl cpputest
+ brew unlink openssl && brew link openssl --force
+ - name: Build
+ env:
+ CC: ${{ matrix.compiler }}
+ BUILD_OPTIONS: |
+ -DENABLE_TESTING=ON
+ -DENABLE_ADDRESS_SANITIZER=ON
+ run: |
+ mkdir build install
+ cd build
+ cmake -DCMAKE_BUILD_TYPE=Release ${BUILD_OPTIONS}
-DCMAKE_INSTALL_PREFIX=../install ..
Review comment:
I updated the nightly to use RelWithDefInfo instead of Release.
But running test with RelWithDefInfo or Release on my Ubuntu PC fails on the
rsa dfi tests.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]