diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 27ac618..78d0262 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,7 +31,8 @@ jobs: - name: Build run: | ./scripts/install-ubuntu.sh - gpclient --version + # assert no library missing + test $(ldd $(which gpclient) | grep 'not found' | wc -l) -eq 0 snapshot-archive-all: if: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/develop' }} diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 179d7e3..3a2c2d6 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -29,4 +29,5 @@ jobs: - name: Build run: | ./scripts/install-ubuntu.sh - gpclient --version + # assert no library missing + test $(ldd $(which gpclient) | grep 'not found' | wc -l) -eq 0