Skip to content

Commit

Permalink
Prepare 0.2.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
MarijnS95 committed Jan 3, 2025
1 parent 8a5d92e commit 589ed5a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- run: echo "TOOLCHAIN=$ANDROID_NDK_LATEST_HOME/toolchains/llvm/prebuilt/linux-x86_64" >> $GITHUB_ENV
- run: ls $TOOLCHAIN/lib64/clang | xargs -0 printf "CLANG_VERSION=%s" >> $GITHUB_ENV
- run: echo "CLANG=$TOOLCHAIN/lib64/clang/$CLANG_VERSION" >> $GITHUB_ENV
- run: ls $TOOLCHAIN/lib/clang | xargs -0 printf "CLANG_VERSION=%s" >> $GITHUB_ENV
- run: echo "CLANG=$TOOLCHAIN/lib/clang/$CLANG_VERSION" >> $GITHUB_ENV

- run: echo $ANDROID_NDK_LATEST_HOME
- run: echo $CLANG_VERSION
Expand Down
2 changes: 1 addition & 1 deletion xbuild/src/download.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ impl WorkItem {
impl WorkItem {
const ORG: &'static str = "rust-mobile";
const REPO: &'static str = "xbuild";
const VERSION: &'static str = "v0.1.0+3";
const VERSION: &'static str = "v0.2.1-alpha";

pub fn xbuild_release(output: PathBuf, artifact: &str) -> Self {
Self::github_release(output, Self::ORG, Self::REPO, Self::VERSION, artifact)
Expand Down

0 comments on commit 589ed5a

Please sign in to comment.