Skip to content

Commit

Permalink
Run tests, bench, gms, & goldens on a physical Pixel 8 on CI
Browse files Browse the repository at this point in the history
Still no diffing yet -- let's just generate the goldens on iOS and see how it does.

Diffs=
8e1be1223 Run tests, bench, gms, & goldens on a physical Pixel 8 on CI (#7618)

Co-authored-by: Chris Dalton <99840794+csmartdalton@users.noreply.github.com>
  • Loading branch information
csmartdalton and csmartdalton committed Jul 16, 2024
1 parent 590a4fd commit 595ac88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .rive_head
Original file line number Diff line number Diff line change
@@ -1 +1 @@
238bf2fe1872740896a75629e8e349f53938b589
8e1be1223161ced9cfb80c0ec3671ffd25ee5cfb
6 changes: 3 additions & 3 deletions build/rive_build_config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -284,9 +284,9 @@ filter({})
if _OPTIONS['os'] == 'android' then
pic('on') -- Position-independent code is required for NDK libraries.

local ndk = os.getenv('NDK_PATH')
if not ndk or ndk == '' then
error('export $NDK_PATH')
local ndk = os.getenv('NDK_PATH') or os.getenv('ANDROID_NDK')
if not ndk then
error('export $NDK_PATH or $ANDROID_NDK')
end

local ndk_toolchain = ndk .. '/toolchains/llvm/prebuilt'
Expand Down

0 comments on commit 595ac88

Please sign in to comment.