aboutsummaryrefslogtreecommitdiff
path: root/src/secp256k1/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2024-01-04 14:40:28 +0000
committerfanquake <fanquake@gmail.com>2024-01-04 14:40:28 +0000
commite2cdeb592596432039d21f4c819d45f1e46d65ef (patch)
tree050af003ad6330259841ce6404f6e4c28a75652e /src/secp256k1/.github/workflows/ci.yml
parent65c05db660b2ca1d0076b0d8573a6760b3228068 (diff)
parent29fde0223abc706925188014209eba75390a9df8 (diff)
downloadbitcoin-e2cdeb592596432039d21f4c819d45f1e46d65ef.tar.xz
Update secp256k1 subtree to latest master
Diffstat (limited to 'src/secp256k1/.github/workflows/ci.yml')
-rw-r--r--src/secp256k1/.github/workflows/ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/secp256k1/.github/workflows/ci.yml b/src/secp256k1/.github/workflows/ci.yml
index b9a9eaa82e..4ad905af52 100644
--- a/src/secp256k1/.github/workflows/ci.yml
+++ b/src/secp256k1/.github/workflows/ci.yml
@@ -47,14 +47,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
- uses: docker/setup-buildx-action@v2
+ uses: docker/setup-buildx-action@v3
with:
# See: https://github.com/moby/buildkit/issues/3969.
driver-opts: |
network=host
- name: Build container
- uses: docker/build-push-action@v4
+ uses: docker/build-push-action@v5
with:
file: ./ci/linux-debian.Dockerfile
tags: linux-debian-image
@@ -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