Skip to content

Commit

Permalink
try apt fix 1
Browse files Browse the repository at this point in the history
```
+ apt-get --option Dpkg::Use-Pty=0 install --yes curl git gpg gpg-agent rsync python3-pefile make cmake zip xz-utils time jq secure-delete checksec qemu-user-static gcc-14 g++-14 gcc-14-aarch64-linux-gnu g++-14-aarch64-linux-gnu libc6-dev-arm64-cross
Reading package lists...
Building dependency tree...
Reading state information...
Package gcc-14-aarch64-linux-gnu is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'gcc-14-aarch64-linux-gnu' has no installation candidate
E: Unable to locate package g++-14-aarch64-linux-gnu
E: Couldn't find any package by regex 'g++-14-aarch64-linux-gnu'
```
Ref: https://github.com/curl/curl-for-win/actions/runs/8985369476/job/24679216957#step:3:104
  • Loading branch information
vszakats committed May 7, 2024
1 parent cdf4ee4 commit 9763df4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _ci-linux-debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,6 @@ elif [[ "${CW_CONFIG:-}" = *'linux'* ]]; then
extra+=' musl:arm64 musl-dev:arm64'
fi
[[ "${CW_CONFIG:-}" = *'r64'* ]] && extra+=' musl:riscv64 musl-dev:riscv64'
if [[ "${CW_CONFIG:-}" = *'gcc'* ]]; then
extra+=" libgcc${CW_GCCSUFFIX}-dev"
fi
if [[ "${CW_CONFIG:-}" =~ (quictls|openssl) ]]; then
# for openssl 'secure-memory' feature
if [ "$(uname -m)" = 'aarch64' ]; then
Expand All @@ -96,6 +93,9 @@ elif [[ "${CW_CONFIG:-}" = *'linux'* ]]; then
fi
[[ "${CW_CONFIG:-}" = *'r64'* ]] && extra+=' libc6-dev-riscv64-cross'
fi
if [[ "${CW_CONFIG:-}" = *'gcc'* ]]; then
extra+=" libgcc${CW_GCCSUFFIX}-dev"
fi
fi

apt-get --option Dpkg::Use-Pty=0 update --yes
Expand Down

0 comments on commit 9763df4

Please sign in to comment.