diff --git a/.github/workflows/sdk.yml b/.github/workflows/sdk.yml index 5b53f19..3f230f6 100644 --- a/.github/workflows/sdk.yml +++ b/.github/workflows/sdk.yml @@ -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 @@ -30,12 +30,12 @@ jobs: TAG: ${{ github.event.release.tag_name }} macos: - runs-on: macos-11 + runs-on: macos-15 steps: - run: ls /Applications/Xcode* - run: cp -R $SDK_PATH . env: - SDK_PATH: /Applications/Xcode_13.2.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk + SDK_PATH: /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk - run: gtar --zstd -cf MacOSX.sdk.tar.zst MacOSX.sdk - run: gh release upload $TAG MacOSX.sdk.tar.zst -R ${{ github.repository }} env: @@ -43,12 +43,12 @@ jobs: TAG: ${{ github.event.release.tag_name }} ios: - runs-on: macos-11 + runs-on: macos-15 steps: - run: ls /Applications/Xcode* - run: cp -R $SDK_PATH . env: - SDK_PATH: /Applications/Xcode_13.2.1.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk + SDK_PATH: /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk - run: gtar --zstd -cf iPhoneOS.sdk.tar.zst iPhoneOS.sdk - run: gh release upload $TAG iPhoneOS.sdk.tar.zst -R ${{ github.repository }} env: diff --git a/xbuild/src/download.rs b/xbuild/src/download.rs index d71a04d..517fa7d 100644 --- a/xbuild/src/download.rs +++ b/xbuild/src/download.rs @@ -187,7 +187,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)