From fe4d9b3841645ec1a963726bf3e3cc247a2a5b2d Mon Sep 17 00:00:00 2001 From: Jan Romann Date: Fri, 5 Aug 2022 07:42:23 +0200 Subject: [PATCH] fixup! chore: update CI pipeline --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f97993f..124ea8f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -50,15 +50,15 @@ jobs: - name: Recompile tinydtls binary for macOS if: matrix.os == 'macos-latest' run: | - ls $DART_HOME/bin/dart + # Remove the signature of the dart binary + # See https://github.com/dart-lang/sdk/issues/38314 codesign --remove-signature $DART_HOME/bin/dart + cd third_party/tinydtls cmake -G "Unix Makefiles" -DBUILD_SHARED_LIBS=true . make cd ../.. cp third_party/tinydtls/*.dylib . - ls - ls third_party/tinydtls - name: Run tests with coverage run: dart test --coverage="coverage"