Fix Android goldens

It also removes premake5 alpha and bump a few deps

Diffs=
5c14a4a30 Fix Android goldens (#7902)

Co-authored-by: Umberto Sonnino <umberto@rive.app>
This commit is contained in:
umberto-sonnino
2024-08-22 07:51:55 +00:00
parent f5c9054202
commit 8812887efe
3 changed files with 5 additions and 5 deletions

View File

@@ -15,8 +15,8 @@ jobs:
- uses: actions/checkout@v2
- name: Install
run: |
wget https://github.com/premake/premake-core/releases/download/v5.0.0-alpha16/premake-5.0.0-alpha16-linux.tar.gz
tar -xvf premake-5.0.0-alpha16-linux.tar.gz
wget -q https://github.com/premake/premake-core/releases/download/v5.0.0-alpha16/premake-5.0.0-alpha16-linux.tar.gz
tar -xf premake-5.0.0-alpha16-linux.tar.gz
sudo chmod a+x premake5
sudo mv premake5 /usr/local/bin

View File

@@ -1 +1 @@
46a3045ae0a8bc9ab0cbbc61f37a49d13e60a3ed
5c14a4a306b45042e505a7a7ba176e301f1d8305

View File

@@ -3,8 +3,8 @@ FROM dart:stable
RUN apt update && apt-get -y install unzip zip clang cmake ninja-build pkg-config libgtk-3-dev xvfb cargo wget g++
WORKDIR /
RUN wget https://github.com/premake/premake-core/releases/download/v5.0.0-alpha15/premake-5.0.0-alpha15-linux.tar.gz
RUN tar -xvf premake-5.0.0-alpha15-linux.tar.gz
RUN wget -q https://github.com/premake/premake-core/releases/download/v5.0.0-beta2/premake-5.0.0-beta2-linux.tar.gz
RUN tar -xf premake-5.0.0-beta2-linux.tar.gz
RUN mv premake5 /usr/bin/
ENV LDFLAGS="-pthreads"