From c865efb5f0ee231da91c543b52e822cad2715d4c Mon Sep 17 00:00:00 2001 From: Vadim Lebedev Date: Fri, 5 Aug 2022 15:19:14 +0200 Subject: [PATCH] Siwtch to libachive v3.6.1 --- .github/workflows/build-wheels.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-wheels.yaml b/.github/workflows/build-wheels.yaml index 9334d95..1fea5e2 100644 --- a/.github/workflows/build-wheels.yaml +++ b/.github/workflows/build-wheels.yaml @@ -6,6 +6,9 @@ on: - master - extended +env: + libarchive_tag: v3.6.1 + jobs: many_linux_wheels: name: manylinux-wheels @@ -42,7 +45,7 @@ jobs: - name: Build libarchive C sources run: | git clone https://github.com/libarchive/libarchive.git libarchive-src - cd libarchive-src; git checkout 3.5 + cd libarchive-src; git checkout {{ env.libarchive_tag }} mkdir build-libarchive; cd build-libarchive cmake ../ make -j$(nproc); make install