Compare commits

..

1 Commits

Author SHA1 Message Date
292bb9d2a3 Update web-wasm from 3.1.5 to 3.1.10
Update web-wasm from 3.1.5 to 3.1.10

Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
2022-05-20 10:01:09 +02:00
2 changed files with 31 additions and 6 deletions

View File

@ -25,7 +25,13 @@ jobs:
fetch-depth: 1
- name: build
run: make base
uses: nick-fields/retry@v2
with:
timeout_minutes: 120
retry_wait_seconds: 40
max_attempts: 3
retry_on: error
command: make base
- name: test
run: make base.test
@ -44,7 +50,13 @@ jobs:
- name: deploy
if: github.ref == 'refs/heads/master'
run: |
uses: nick-fields/retry@v2
with:
timeout_minutes: 30
retry_wait_seconds: 30
max_attempts: 4
retry_on: error
command: |
docker login -u ${{ secrets.DOCKER_USER }} -p ${{ secrets.DOCKER_PASS }}
docker image push dockcross/base --all-tags
@ -857,7 +869,13 @@ jobs:
run: xz -d -k < ./cache/base.tar.xz | docker load
- name: build
run: make ${{ matrix.arch_name.image }}
uses: nick-fields/retry@v2
with:
timeout_minutes: 360
retry_wait_seconds: 20
max_attempts: 3
retry_on: error
command: make ${{ matrix.arch_name.image }}
- name: basic test
run: make ${{ matrix.arch_name.image }}.test
@ -939,6 +957,12 @@ jobs:
- name: deploy
if: github.ref == 'refs/heads/master'
run: |
uses: nick-fields/retry@v2
with:
timeout_minutes: 30
retry_wait_seconds: 30
max_attempts: 4
retry_on: error
command: |
docker login -u ${{ secrets.DOCKER_USER }} -p ${{ secrets.DOCKER_PASS }}
docker image push dockcross/${{ matrix.arch_name.image }} --all-tags

View File

@ -1,4 +1,5 @@
FROM emscripten/emsdk:3.1.5
ARG DOCKER_IMAGE_VERSION=3.1.10
FROM emscripten/emsdk:$DOCKER_IMAGE_VERSION
LABEL maintainer="Matt McCormick matt.mccormick@kitware.com"
@ -56,7 +57,7 @@ RUN ln -s /usr/bin/python3 /usr/bin/python
#include "common.webassembly"
ENV EMSCRIPTEN_VERSION 3.1.5
ENV EMSCRIPTEN_VERSION $DOCKER_IMAGE_VERSION
ENV PATH /emsdk:/emsdk/upstream/bin/:/emsdk/upstream/emscripten:${PATH}
ENV CC=/emsdk/upstream/emscripten/emcc \