Skip to content

Commit

Permalink
try grouping 6
Browse files Browse the repository at this point in the history
  • Loading branch information
vszakats committed Jul 13, 2024
1 parent 93efb19 commit 65a475b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions _ci-linux-alpine.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
# shellcheck disable=SC3040,SC2039
set -o xtrace -o errexit -o nounset; [ -n "${BASH:-}${ZSH_NAME:-}" ] && set -o pipefail

echo '::group::install'

cat /etc/*-release

LLVM='17'
Expand Down Expand Up @@ -38,4 +40,6 @@ fi
apk add --no-cache curl git gpg gpg-agent rsync build-base cmake python3 \
zip tar xz jq openssl ${extra}

echo '::endgroup::'

./_build.sh
4 changes: 4 additions & 0 deletions _ci-linux-debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
# shellcheck disable=SC3040,SC2039
set -o xtrace -o errexit -o nounset; [ -n "${BASH:-}${ZSH_NAME:-}" ] && set -o pipefail

echo '::group::install'

cat /etc/*-release

export DEBIAN_FRONTEND='noninteractive'
Expand Down Expand Up @@ -122,4 +124,6 @@ if [ -n "${dl}" ]; then
find -L 'my-pkg/usr/lib/clang' | sort
fi

echo '::endgroup::'

./_build.sh
4 changes: 4 additions & 0 deletions _ci-mac-homebrew.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
# shellcheck disable=SC3040,SC2039
set -o xtrace -o errexit -o nounset; [ -n "${BASH:-}${ZSH_NAME:-}" ] && set -o pipefail

echo '::group::install'

extra=''
[[ "${CW_CONFIG:-}" = *'boringssl'* ]] && extra+=' go'
if [[ "${CW_CONFIG:-}" != *'mac'* ]] || [[ "${CW_CONFIG:-}" != *'gcc'* ]]; then
Expand Down Expand Up @@ -37,4 +39,6 @@ fi

[[ "${CW_CONFIG:-}" = *'win'* ]] && wineboot --init

echo '::endgroup::'

./_build.sh
4 changes: 4 additions & 0 deletions _ci-win-msys2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

set -o xtrace -o errexit -o nounset; [ -n "${BASH:-}${ZSH_NAME:-}" ] && set -o pipefail

echo '::group::install'

pacman --noconfirm --ask 20 --noprogressbar --sync --refresh --sysupgrade --sysupgrade
pacman --noconfirm --ask 20 --noprogressbar --sync --refresh --sysupgrade --sysupgrade
pacman --noconfirm --ask 20 --noprogressbar --sync --needed \
Expand All @@ -15,4 +17,6 @@ pacman --noconfirm --ask 20 --noprogressbar --sync --needed \
pacman --noconfirm --ask 20 --noprogressbar --sync --needed \
mingw-w64-{x86_64,i686}-{go,nasm}

echo '::endgroup::'

./_build.sh

0 comments on commit 65a475b

Please sign in to comment.