ci: Align Autotools/CMake CI_INSTALL directory names

This commit is contained in:
Hennadii Stepanov 2023-09-07 20:58:28 +01:00
parent 9f005c60d6
commit 421d84855a
No known key found for this signature in database
GPG Key ID: 410108112E7EA81F

View File

@ -792,7 +792,7 @@ jobs:
- name: Check installation with Autotools
env:
CI_INSTALL: ${{ runner.temp }}/${{ github.run_id }}${{ github.action }}
CI_INSTALL: ${{ runner.temp }}/${{ github.run_id }}${{ github.action }}/install
run: |
./autogen.sh && ./configure --prefix=${{ env.CI_INSTALL }} && make clean && make install && ls -RlAh ${{ env.CI_INSTALL }}
gcc -o ecdsa examples/ecdsa.c $(PKG_CONFIG_PATH=${{ env.CI_INSTALL }}/lib/pkgconfig pkg-config --cflags --libs libsecp256k1) -Wl,-rpath,"${{ env.CI_INSTALL }}/lib" && ./ecdsa