File tree Expand file tree Collapse file tree
.github/actions/setup-vcpkg-android Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88runs :
99 using : " composite"
1010 steps :
11- - name : Set VCPKG_ROOT
11+ - name : Export GitHub Actions cache environment variables
12+ uses : actions/github-script@v7
13+ with :
14+ script : |
15+ core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || '');
16+ core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');
17+
18+ - name : Set VCPKG_ROOT and Binary Sources
1219 shell : bash
13- run : echo "VCPKG_ROOT=${{ github.workspace }}/${{ inputs.vcpkg-path }}" >> $GITHUB_ENV
20+ run : |
21+ echo "VCPKG_ROOT=${{ github.workspace }}/${{ inputs.vcpkg-path }}" >> $GITHUB_ENV
22+ echo "VCPKG_BINARY_SOURCES=clear;x-gha,readwrite" >> $GITHUB_ENV
1423
1524 - name : Bootstrap vcpkg
1625 shell : bash
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ cd ../../
4545
4646
4747 # --- Resolve device serial ---
48+ ADB=" ${ADB:- adb} "
4849PACKAGE=" com.heroiclabs.nakamatest"
4950 ACTIVITY=" ${PACKAGE} /.MainActivity"
5051 TIMEOUT=300
You can’t perform that action at this time.
0 commit comments