From cd6032b1e1c5592be87f390b6c1c0e0cbfd9f619 Mon Sep 17 00:00:00 2001 From: Keijo Raamat Date: Wed, 29 Sep 2021 16:35:49 +0300 Subject: [PATCH] make install --- .github/workflows/erlang.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/erlang.yml b/.github/workflows/erlang.yml index d096fd8..b6b5f90 100644 --- a/.github/workflows/erlang.yml +++ b/.github/workflows/erlang.yml @@ -18,9 +18,13 @@ jobs: - name: Setup erlang run: | - curl -O https://raw.githubusercontent.com/kerl/kerl/master/kerl - chmod +x kerl - ./kerl build ${{matrix.otp}} + git clone https://github.com/erlang/otp.git + cd otp + git checkout OTP 21.3.8.17 + ./otp_build autoconf + ./configure + make + make install erlang --version - uses: ruby/setup-ruby@v1