-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4298 from facebook/dev
v1.5.7
- Loading branch information
Showing
166 changed files
with
6,213 additions
and
3,997 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
task: | ||
name: FreeBSD (shortest) | ||
name: FreeBSD (make check) | ||
freebsd_instance: | ||
matrix: | ||
image_family: freebsd-14-0 | ||
image_family: freebsd-13-2 | ||
image_family: freebsd-14-2 | ||
install_script: pkg install -y gmake coreutils | ||
script: | | ||
MOREFLAGS="-Werror" gmake -j all | ||
gmake shortest | ||
gmake check |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Android NDK Build | ||
|
||
on: | ||
pull_request: | ||
branches: [ dev, release, actionsTest ] | ||
push: | ||
branches: [ actionsTest, '*ndk*' ] | ||
|
||
permissions: read-all | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # tag=v4.1.1 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
- name: Setup Android SDK | ||
uses: android-actions/setup-android@9fc6c4e9069bf8d3d10b2204b1fb8f6ef7065407 # v3.2.2 | ||
|
||
- name: Install Android NDK | ||
run: | | ||
sdkmanager --install "ndk;27.0.12077973" | ||
echo "ANDROID_NDK_HOME=$ANDROID_SDK_ROOT/ndk/27.0.12077973" >> $GITHUB_ENV | ||
- name: Build with NDK | ||
run: | | ||
export PATH=$ANDROID_NDK_HOME/toolchains/llvm/prebuilt/linux-x86_64/bin:$PATH | ||
make CC=aarch64-linux-android21-clang \ | ||
AR=llvm-ar \ | ||
RANLIB=llvm-ranlib \ | ||
STRIP=llvm-strip | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.