File tree 1 file changed +1
-12
lines changed
1 file changed +1
-12
lines changed Original file line number Diff line number Diff line change 33
33
if [ "$RUNNER_OS" = "macOS" ]; then
34
34
brew install cmake autoconf automake libtool pkg-config
35
35
elif [ "$RUNNER_OS" = "Linux" ]; then
36
- sudo apt-get install curl cmake make libtool pkg-config texinfo
37
-
38
- # install autoconf 2.71 from source (required by libffi, not available via apt-get on Ubuntu focal)
39
- wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.71.tar.xz
40
- tar -xf autoconf-2.71.tar.xz
41
- cd autoconf-2.71 && ./configure --prefix=/usr/ && make && sudo make install
42
- autoconf --version
43
-
44
- wget http://ftp.gnu.org/gnu/automake/automake-1.16.4.tar.xz
45
- tar -xf automake-1.16.4.tar.xz
46
- cd automake-1.16.4 && ./configure --prefix=/usr/ && make && sudo make install
47
- automake --version
36
+ sudo apt-get install cmake make libtool autoconf automake pkg-config texinfo
48
37
else
49
38
echo Unsupported OS $RUNNER_OS
50
39
exit 1
You can’t perform that action at this time.
0 commit comments