From: Frank Stettner Date: Sun, 26 Mar 2023 15:43:14 +0000 (+0200) Subject: Add sigrok-dumps to the dependency build script for MXE X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=c70f8c220ca2ec40b3f254cdabe2ad1909fb7c46;p=sigrok-build.git Add sigrok-dumps to the dependency build script for MXE --- diff --git a/.github/workflows/pulseview_mxe.yml b/.github/workflows/pulseview_mxe.yml index 6a3acb9..b0e9616 100644 --- a/.github/workflows/pulseview_mxe.yml +++ b/.github/workflows/pulseview_mxe.yml @@ -21,6 +21,8 @@ env: LIBSIGROKDECODE_REPO: "git://sigrok.org/libsigrokdecode" # Git URL for the sigrok-firmware dependency SIGROK_FIRMWARE_REPO: "git://sigrok.org/sigrok-firmware" + # Git URL for the sigrok-dumps dependency + SIGROK_DUMPS_REPO: "git://sigrok.org/sigrok-dumps" # Build type for PulseView (Debug, Release, RelWithDebInfo, MinSizeRel) BUILD_TYPE: "Release" # Misc commands diff --git a/ci/sigrok-mxe-build-dependencies.sh b/ci/sigrok-mxe-build-dependencies.sh index a38f3d6..c867ae3 100755 --- a/ci/sigrok-mxe-build-dependencies.sh +++ b/ci/sigrok-mxe-build-dependencies.sh @@ -118,3 +118,9 @@ cd sigrok-firmware make $PARALLEL $V make install $V cd .. + +# sigrok-dumps +$GIT_CLONE $SIGROK_DUMPS_REPO sigrok-dumps +cd sigrok-dumps +make PREFIX="$INSTALL_DIR" install +cd ..