Skip to content

Commit 1f48004

Browse files
committed
Run apt-get update on Linux to ensure we can get libcurl4-openssl-dev
1 parent 6f7c435 commit 1f48004

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
swift_version: ${{ fromJSON(inputs.swift_versions || '["6.3"]') }}
27+
swift_version: ${{ fromJSON(inputs.swift_versions || '["6.3", "nightly-main"]') }}
2828
sdk_triple: ['aarch64-unknown-linux-android28']
2929
ndk_version: ['r27d']
3030
os: ['ubuntu-latest', 'macos-latest']
@@ -46,6 +46,7 @@ jobs:
4646
run: |
4747
set -euxo pipefail
4848
if [[ "${RUNNER_OS}" == "Linux" ]]; then
49+
sudo apt-get update
4950
sudo apt-get -yq install curl jq gpg unzip libcurl4-openssl-dev
5051
ARCH="$(uname -m)"
5152
curl -L -O --retry 3 "https://download.swift.org/swiftly/linux/swiftly-${ARCH}.tar.gz"

0 commit comments

Comments
 (0)