File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed
Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 22
33[ ` install.sh ` ] ( ./install.sh ) is delivered when you ` curl tea.xyz ` .
44
5- # GitHub Action 0.12.4
5+ # GitHub Action 0.12.5
66
77This repository also provides the ` tea ` GitHub Action.
88
Original file line number Diff line number Diff line change 55if test -f /etc/debian_version; then
66 apt-get --yes update
77
8+ # minimal but required or networking doesn’t work
9+ # https://packages.debian.org/buster/all/netbase/filelist
10+ COMMON=" netbase"
11+
812 case $( cat /etc/debian_version) in
913 jessie/sid|8.* |stretch/sid|9.* )
10- apt-get --yes install libc-dev libstdc++-4.8-dev libgcc-4.7-dev;;
14+ apt-get --yes install libc-dev libstdc++-4.8-dev libgcc-4.7-dev $COMMON ;;
1115 buster/sid|10.* )
12- apt-get --yes install libc-dev libstdc++-8-dev libgcc-8-dev;;
16+ apt-get --yes install libc-dev libstdc++-8-dev libgcc-8-dev $COMMON ;;
1317 bullseye/sid|11.* )
14- apt-get --yes install libc-dev libstdc++-10-dev libgcc-9-dev;;
18+ apt-get --yes install libc-dev libstdc++-10-dev libgcc-9-dev $COMMON ;;
1519 bookworm/sid|12.* |* )
16- apt-get --yes install libc-dev libstdc++-11-dev libgcc-10-dev;;
20+ apt-get --yes install libc-dev libstdc++-11-dev libgcc-10-dev $COMMON ;;
1721 esac
1822elif test -f /etc/fedora-release; then
1923 yum --assumeyes install libatomic
You can’t perform that action at this time.
0 commit comments