Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 667a24a

Browse filesBrowse files
committed
ci: fix dependencies to known-good versions
1 parent 0af4ac4 commit 667a24a
Copy full SHA for 667a24a

File tree

Expand file treeCollapse file tree

3 files changed

+14
-5
lines changed
Filter options
Expand file treeCollapse file tree

3 files changed

+14
-5
lines changed

‎cmake/prepare_for_wheel_distrib_almalinux.sh

Copy file name to clipboardExpand all lines: cmake/prepare_for_wheel_distrib_almalinux.sh
+5-2Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,17 @@
77
dnf install -y git
88

99
# Clone the libdwarf code repository
10-
git clone https://github.com/davea42/libdwarf-code.git --depth 1
10+
git clone https://github.com/davea42/libdwarf-code.git
1111

1212
# Install the required packages for building libdwarf
1313
dnf install -y gcc gcc-c++ make autoconf automake libtool pkg-config libzstd-devel zlib-devel
1414

1515
# Change to the libdwarf directory
1616
cd libdwarf-code
1717

18+
# Checkout the specific commit for consistency
19+
git checkout 442cd4f9b094a92ac7b8f493507cd0d4f3e7947a
20+
1821
# Run the autogen script to generate the configure script
1922
env -i sh autogen.sh
2023

@@ -31,7 +34,7 @@ make install
3134
cd ..
3235

3336
# Clone the libelf repository
34-
git clone git://sourceware.org/git/elfutils.git --depth 1
37+
git clone git://sourceware.org/git/elfutils.git --branch elfutils-0.193 --depth 1
3538

3639
# Install the required packages for building libelf
3740
dnf install -y bzip2-devel xz-devel libarchive gettext-devel flex bison libcurl-devel json-c-devel

‎cmake/prepare_for_wheel_distrib_alpine.sh

Copy file name to clipboardExpand all lines: cmake/prepare_for_wheel_distrib_alpine.sh
+4-1Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,17 @@
77
apk add git
88

99
# Clone the libdwarf code repository
10-
git clone https://github.com/davea42/libdwarf-code.git --depth 1
10+
git clone https://github.com/davea42/libdwarf-code.git
1111

1212
# Install the required packages for building libdwarf
1313
apk add gcc g++ make autoconf automake libtool pkgconf zstd-dev zlib-dev
1414

1515
# Change to the libdwarf directory
1616
cd libdwarf-code
1717

18+
# Checkout the specific commit for consistency
19+
git checkout 442cd4f9b094a92ac7b8f493507cd0d4f3e7947a
20+
1821
# Run the autogen script to generate the configure script
1922
env -i sh autogen.sh
2023

‎cmake/prepare_for_wheel_distrib_centos.sh

Copy file name to clipboardExpand all lines: cmake/prepare_for_wheel_distrib_centos.sh
+5-2Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
yum install -y git
88

99
# Clone the libdwarf code repository
10-
git clone https://github.com/davea42/libdwarf-code.git --depth 1
10+
git clone https://github.com/davea42/libdwarf-code.git
1111

1212
# Install the required packages for building libdwarf
1313
yum install -y https://archives.fedoraproject.org/pub/archive/epel/6/i386/Packages/l/libzstd-devel-1.4.5-3.el6.i686.rpm https://archives.fedoraproject.org/pub/archive/epel/6/i386/Packages/l/libzstd-1.4.5-3.el6.i686.rpm
@@ -16,6 +16,9 @@ yum install -y gcc gcc-c++ make autoconf automake libtool pkgconfig zlib-devel
1616
# Change to the libdwarf directory
1717
cd libdwarf-code
1818

19+
# Checkout the specific commit for consistency
20+
git checkout 442cd4f9b094a92ac7b8f493507cd0d4f3e7947a
21+
1922
# Run the autogen script to generate the configure script
2023
env -i sh autogen.sh
2124

@@ -32,7 +35,7 @@ make install
3235
cd ..
3336

3437
# Clone the libelf repository
35-
git clone git://sourceware.org/git/elfutils.git --depth 1
38+
git clone git://sourceware.org/git/elfutils.git --branch elfutils-0.193 --depth 1
3639

3740
# Install the required packages for building libelf
3841
yum install -y bzip2-devel xz-devel libarchive gettext-devel flex bison libcurl-devel json-c-devel

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.