From da60714924a03a135c4b2e778898270654030cfa Mon Sep 17 00:00:00 2001 From: Jamil Bou Kheir Date: Mon, 28 Jun 2021 21:59:27 -0700 Subject: [PATCH] add curl on install step --- .ci/install_runtimes.sh | 2 -- .github/workflows/ci.yml | 4 +++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.ci/install_runtimes.sh b/.ci/install_runtimes.sh index ff3095a51..6d6dfa945 100755 --- a/.ci/install_runtimes.sh +++ b/.ci/install_runtimes.sh @@ -3,8 +3,6 @@ set -e os_name='ubuntu~bionic' -apt-get install curl --fix-missing - curl -O https://packages.erlang-solutions.com/erlang/debian/pool/esl-erlang_24.0.2-1~${os_name}_${arch}.deb curl -O https://packages.erlang-solutions.com/erlang/debian/pool/elixir_1.12.0-1~${os_name}_all.deb dpkg -i *.deb diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f9f41341..4ec9a0e2f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,9 +73,11 @@ jobs: arch: arm64 with: arch: aarch64 + install: | + apt-get update -q -y + apt-get install -q -y curl dockerRunArgs: | --volume "${PWD}:/app" - distro: ubuntu18.04 githubToken: ${{ github.token }} run: |