Skip to content

Commit

Permalink
bump premake
Browse files Browse the repository at this point in the history
Diffs=
bc6010b6e bump premake (#8120)

Co-authored-by: Maxwell Talbot <[email protected]>
  • Loading branch information
mjtalbot and mjtalbot committed Sep 11, 2024
1 parent 1eae8b8 commit 4d8dffb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
- uses: actions/checkout@v2
- name: Install
run: |
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
wget -q https://github.com/premake/premake-core/releases/download/v5.0.0-beta2/premake-5.0.0-beta2-linux.tar.gz
tar -xf premake-5.0.0-beta2-linux.tar.gz
sudo chmod a+x premake5
sudo mv premake5 /usr/local/bin
Expand Down Expand Up @@ -52,8 +52,8 @@ jobs:

- name: Install
run: |
wget https://github.com/premake/premake-core/releases/download/v5.0.0-alpha16/premake-5.0.0-alpha16-macosx.tar.gz
tar -xvf premake-5.0.0-alpha16-macosx.tar.gz
wget -q https://github.com/premake/premake-core/releases/download/v5.0.0-beta2/premake-5.0.0-beta2-macosx.tar.gz
tar -xf premake-5.0.0-beta2-macosx.tar.gz
sudo chmod a+x premake5
sudo mv premake5 /usr/local/bin
Expand Down
2 changes: 1 addition & 1 deletion .rive_head
Original file line number Diff line number Diff line change
@@ -1 +1 @@
06f13b3d8d8611738d9aaf031971714df83ed4a5
bc6010b6ee16eb48240823fd2086a363848a7d3d
2 changes: 1 addition & 1 deletion dependencies/macosx/get_premake5.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ fi

mkdir -p $DEPENDENCIES/bin
echo Downloading Premake5
curl https://github.com/premake/premake-core/releases/download/v5.0.0-beta1/premake-5.0.0-beta1-macosx.tar.gz -L -o $DEPENDENCIES//bin/premake_macosx.tar.gz
curl https://github.com/premake/premake-core/releases/download/v5.0.0-beta2/premake-5.0.0-beta2-macosx.tar.gz -L -o $DEPENDENCIES//bin/premake_macosx.tar.gz
cd $DEPENDENCIES/bin
# Export premake5 into bin
tar -xvf premake_macosx.tar.gz 2>/dev/null
Expand Down
6 changes: 4 additions & 2 deletions skia/thumbnail_generator/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ set -e

BASEDIR="$PWD"

if [ -d "$PWD/../../../rive-cpp" ]; then
export RIVE_RUNTIME_DIR="$PWD/../../../rive-cpp"
if [ -d "$PWD/../../../rive-runtime" ]; then
export RIVE_RUNTIME_DIR="$PWD/../../../rive-runtime"
else
export RIVE_RUNTIME_DIR="$PWD/../../../runtime"
fi
Expand All @@ -18,6 +18,8 @@ cd build

OPTION=$1

export PREMAKE_PATH="$RIVE_RUNTIME_DIR/build":$PREMAKE_PATH

if [ "$OPTION" = 'help' ]; then
echo build.sh - build debug library
echo build.sh clean - clean the build
Expand Down

0 comments on commit 4d8dffb

Please sign in to comment.