chore(deps): update all non-major dependencies #597
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
name: Pull Request Check | |
on: | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- '**.md' | |
- '**.txt' | |
- 'renovate.json' | |
- '.editorconfig' | |
- '.gitignore' | |
- '.github/**' | |
- '.idea/**' | |
- '!.github/workflows/**' | |
jobs: | |
build: | |
name: Build CI (Pull Request) | |
runs-on: ubuntu-latest | |
env: | |
CCACHE_COMPILERCHECK: "%compiler% -dumpmachine; %compiler% -dumpversion" | |
CCACHE_NOHASHDIR: "true" | |
CCACHE_HARDLINK: "true" | |
CCACHE_BASEDIR: "${{ github.workspace }}" | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
submodules: 'true' | |
fetch-depth: 0 | |
- name: Config submodules | |
run: | | |
git -C "libs/LSPlant" config "submodule.test/src/main/jni/external/lsprism.update" none | |
git -C "libs/LSPlant" config "submodule.test/src/main/jni/external/lsparself.update" none | |
git -C "libs/LSPlant" config "submodule.docs/doxygen-awesome-css.update" none | |
git -C "libs/mmkv/MMKV" config "submodule.Python/pybind11.update" none | |
git submodule foreach git submodule update --init --recursive | |
- name: set up JDK 17 | |
uses: actions/setup-java@v4.2.2 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: gradle | |
- name: Install ccache | |
run: | | |
sudo apt install -y ccache | |
ccache -o max_size=1G | |
ccache -o hash_dir=false | |
ccache -o hard_link=true | |
ccache -o compiler_check='%compiler% -dumpmachine; %compiler% -dumpversion' | |
ccache -zp | |
- name: Cache Native Build | |
uses: actions/cache@v4.0.2 | |
with: | |
path: | | |
~/.cache/ccache | |
~/.ccache | |
app/build/.lto-cache | |
key: native-cache-${{ github.sha }} | |
restore-keys: native-cache- | |
- name: Setup cmake | |
run: | | |
echo "ANDROID_HOME=${ANDROID_HOME}" | |
echo "ANDROID_SDK_ROOT=${ANDROID_SDK_ROOT}" | |
mkdir -p "$ANDROID_HOME/licenses/" | |
echo > "$ANDROID_HOME/licenses/android-sdk-license" | |
echo -n 24333f8a63b6825ea9c5514f83c2829b004d1fee > "$ANDROID_HOME/licenses/android-sdk-license" | |
${ANDROID_HOME}/cmdline-tools/latest/bin/sdkmanager --install "cmake;3.22.1" --sdk_root=${ANDROID_SDK_ROOT} | |
echo "sdk.dir=${ANDROID_HOME}" > local.properties | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v3.5.0 | |
- name: Build with Gradle | |
run: | | |
echo 'org.gradle.parallel=true' >> gradle.properties | |
echo 'org.gradle.vfs.watch=true' >> gradle.properties | |
sed -i 's/org.gradle.configuration-cache=true//g' gradle.properties | |
./gradlew :app:packageDebug | |
ccache -s |