CI: install autoconf for Emscripten

This commit is contained in:
Sergii Pylypenko
2022-02-21 01:22:37 +02:00
parent 7aaac13afe
commit 0e4eb0fc41

View File

@@ -23,6 +23,20 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: |
echo "::group::Update apt"
sudo apt-get update
echo "::endgroup::"
echo "::group::Install dependencies"
sudo apt-get install -y --no-install-recommends \
autoconf \
automake \
libtool \
# EOF
echo "::endgroup::"
- name: Setup cache
uses: actions/cache@v2
with: