From a290242a29ae1686916f72f7a690e89b1b8430b5 Mon Sep 17 00:00:00 2001 From: Michele Renzullo Date: Mon, 6 Jan 2025 13:46:55 -0300 Subject: [PATCH] Update emscripten and coverage logo --- .github/workflows/ci.yml | 1 + Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bdee8b6..60439b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -270,6 +270,7 @@ jobs: uses: ImBIOS/lcov-coverage-badge@v1.0.1 with: file: output-${{ env.BUILD_TARGET }}/app/coverage/lcov.info + icon_name: codecov access_token: ${{ secrets.GITHUB_TOKEN }} - name: Upload coverage artifacts diff --git a/Dockerfile b/Dockerfile index efc9123..09258bd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -74,7 +74,7 @@ RUN bootstrap/bootstrap.sh android && rm -rf build FROM builder-env AS wasm # Download emsdk 3.1.66 -RUN wget -q https://github.com/emscripten-core/emsdk/archive/refs/tags/3.1.66.zip -O /opt/emsdk.zip +RUN wget -q https://github.com/emscripten-core/emsdk/archive/refs/tags/3.1.74.zip -O /opt/emsdk.zip # Extract emsdk and create in symlink in /root (aka $HOME) ENV EMSDK=/opt/emsdk RUN unzip /opt/emsdk.zip -d /opt/ && mv /opt/emsdk-* /opt/emsdk && rm /opt/emsdk.zip && ln -s /opt/emsdk /root/emsdk