Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build-quick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,10 @@ jobs:
- name: Install macos self-hosted pre-requisites
# All platforms require cargo to build correctly, but our self-hosted tartelet
# image doesn't have cargo (or rustup) installed by default. Easily fixed
if: contains(matrix.os, 'macos-tartelet')
if: contains(runner.environment, 'self-hosted') && contains(runner.os, 'macOS')
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain none
echo "$HOME/.cargo/bin" >> $GITHUB_PATH

- name: Ubuntu setup
# We get KVM set up on Ubuntu as we run the emulator there (only platform with nested virt)
Expand Down Expand Up @@ -173,7 +174,7 @@ jobs:
- name: Restore Rust Cache (Unix)
id: rust-cache-unix
uses: actions/cache/restore@v5
if: contains(matrix.os, 'windows') == false
if: contains(matrix.os, 'windows') == false && contains(runner.environment, 'self-hosted') == false
with:
path: |
~/.cargo/registry
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,13 @@ jobs:
- name: Install macos self-hosted pre-requisites
# All platforms require cargo to build correctly, but our self-hosted tartelet
# image doesn't have cargo (or rustup) installed by default. Easily fixed
if: contains(runner.environment, 'self-hosted') && contains(runner.os, 'macOS')
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain none
echo "$HOME/.cargo/bin" >> $GITHUB_PATH

- name: Restore Rust Cache
if: contains(runner.environment, 'self-hosted') == false
id: rust-cache
uses: actions/cache/restore@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ android.useAndroidX=true
android.enableJetifier=false

GROUP=io.github.david-allison
VERSION_NAME=0.1.62-anki25.09.2
VERSION_NAME=0.1.63-anki25.09.2

POM_INCEPTION_YEAR=2020

Expand Down