Skip to content

Commit

Permalink
Merge pull request #12 from Traverse-Research/run-sdk-ci-2
Browse files Browse the repository at this point in the history
🆙 Update SDK CI part 2
  • Loading branch information
tosti007 authored Oct 23, 2024
2 parents 2af1823 + 446d561 commit 61dacd0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
mkdir -p Android.ndk && cd Android.ndk
cp -r "$TOOLCHAIN/sysroot/usr" ./usr
cp -r "$CLANG/lib/linux/aarch64/*" ./usr/lib/aarch64-linux-android/
cp -r "$CLANG/lib/linux/arm/*" ./usr/lib/arm-linux-androideabi/
cp -r "$CLANG/lib/linux/x86_64/*" ./usr/lib/x86_64-linux-android/
cp -r "$CLANG/lib/linux/i386/*" ./usr/lib/i686-linux-android/
cp -r $TOOLCHAIN/sysroot/usr ./usr
cp -r $CLANG/lib/linux/aarch64/* ./usr/lib/aarch64-linux-android/
cp -r $CLANG/lib/linux/arm/* ./usr/lib/arm-linux-androideabi/
cp -r $CLANG/lib/linux/x86_64/* ./usr/lib/x86_64-linux-android/
cp -r $CLANG/lib/linux/i386/* ./usr/lib/i686-linux-android/
echo "INPUT(-lunwind)" > ./usr/lib/aarch64-linux-android/libgcc.a
echo "INPUT(-lunwind)" > ./usr/lib/arm-linux-androideabi/libgcc.a
Expand Down
1 change: 1 addition & 0 deletions xbuild/src/download.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ impl WorkItem {
impl WorkItem {
const ORG: &'static str = "Traverse-Research";
const REPO: &'static str = "xbuild";
// This needs to be in line with the latest release tag
const VERSION: &'static str = "v0.2.0+traverse";

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

0 comments on commit 61dacd0

Please sign in to comment.