diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-07-24 08:20:42 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-07-24 08:28:43 +0200 |
commit | 2cf5ad9ea9b1c7edb77f5c3e42935d73d041f1f9 (patch) | |
tree | f6c812b11b82e74f0ed43cb7eacc28f91b3b73cd /.github/workflows/android_builds.yml | |
parent | 422a2da8c7c2d973e391703ea0c0249b2c6fa4c5 (diff) | |
download | redot-engine-2cf5ad9ea9b1c7edb77f5c3e42935d73d041f1f9.tar.gz |
CI: Fix cache key and include base branch
The base branch is hardcoded as an env variable as I couldn't find a simple
way to just get either `3.2` or `master`. But it's easy to change when we
branch off from `master` to a new stable branch, which doesn't happen often.
(There's `{{github.base_ref}}` but it's probably more verbose like
`ref/heads/master`, and only valid for PRs.)
Diffstat (limited to '.github/workflows/android_builds.yml')
-rw-r--r-- | .github/workflows/android_builds.yml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/.github/workflows/android_builds.yml b/.github/workflows/android_builds.yml index 6fd2ce7239..c591b4bb39 100644 --- a/.github/workflows/android_builds.yml +++ b/.github/workflows/android_builds.yml @@ -3,13 +3,14 @@ on: [push, pull_request] # Global Cache Settings env: + GODOT_BASE_BRANCH: master SCONS_CACHE_LIMIT: 4096 jobs: android-template: runs-on: "ubuntu-20.04" - name: Android Template (target=release, tools=no) + name: Template (target=release, tools=no) steps: - uses: actions/checkout@v2 @@ -20,13 +21,13 @@ jobs: sudo cp -f misc/ci/sources.list /etc/apt/sources.list sudo apt-get update - # install all packages (except scons) + # Install all packages (except scons) - name: Configure dependencies run: | sudo apt-get install openjdk-8-jdk echo "::set-env name=JAVA_HOME::usr/lib/jvm/java-8-openjdk-amd64" - - name: Install Android Sdk and Ndk + - name: Install Android SDK and NDK run: | echo "::set-env name=PATH::/usr/lib/jvm/java-8-openjdk-amd64/jre/bin:${PATH}" java -version @@ -36,20 +37,18 @@ jobs: source ~/.bashrc # Upload cache on completion and check it out now - # Editing this is pretty dangerous for windows since it can break and needs properly tested with a fresh cache. - # Linux with this will work reliably, so not as bad to edit for Linux. - name: Load .scons_cache directory id: android-template-cache uses: actions/cache@v2 with: path: ${{github.workspace}}/.scons_cache/ - key: ${{github.job}}-${GITHUB_REF##*/}-${{github.sha}} + key: ${{github.job}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}} restore-keys: | - ${{github.job}}-${GITHUB_REF##*/}-${{github.sha}} - ${{github.job}}-${GITHUB_REF##*/} - ${{github.job}} + ${{github.job}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}} + ${{github.job}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}} + ${{github.job}}-${{env.GODOT_BASE_BRANCH}} - # Use python 3.x release (works cross platform) + # Use python 3.x release (works cross platform) - name: Set up Python 3.x uses: actions/setup-python@v2 with: @@ -65,6 +64,7 @@ jobs: python -m pip install scons python --version scons --version + - name: Compilation env: SCONS_CACHE: ${{github.workspace}}/.scons_cache/ |