From b9e8388566026182f87c134e1182265f8a928b36 Mon Sep 17 00:00:00 2001 From: Konstantinos Chatzilygeroudis Date: Wed, 31 Jan 2024 17:15:02 +0200 Subject: [PATCH] Last try --- .github/workflows/ci_linux.yml | 2 ++ ci/install_dart_latest.sh | 1 + 2 files changed, 3 insertions(+) diff --git a/.github/workflows/ci_linux.yml b/.github/workflows/ci_linux.yml index 757dcf2c..ef8f8b4e 100644 --- a/.github/workflows/ci_linux.yml +++ b/.github/workflows/ci_linux.yml @@ -61,6 +61,8 @@ jobs: if [ "$COMPILER" = "clang" ]; then export CC=/usr/bin/clang && export CXX=/usr/bin/clang++ fi + ldd /home/runner/.dart_install/$python_dist_dir/dartpy.cpython-38-x86_64-linux-gnu.so + python -c "import dartpy" cd ${{github.workspace}} if [ "$BUILD_PYTHON" = "ON" ]; then ./waf configure --python --prefix=/usr --dart=~/.dart_install ; diff --git a/ci/install_dart_latest.sh b/ci/install_dart_latest.sh index 2221a949..4c5ba682 100755 --- a/ci/install_dart_latest.sh +++ b/ci/install_dart_latest.sh @@ -36,6 +36,7 @@ else cmake -DBUILD_SHARED_LIBS=ON -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_INSTALL_PREFIX=/home/runner/.dart_install .. fi make -j4 +make dartpy -j4 sudo make install # We do not need this anymore # if [ "$BUILD_PYTHON" = "ON" ] && [ "$DART_TAG" = "v6.11.1"]; then