[AUTO] Update readme and add orbit config #8

Merged
orbit-brancher[bot] merged 6 commits from orbit-1716141383 into porting 2024-05-19 21:00:26 +02:00
3 changed files with 51 additions and 1 deletions

50
.github/workflows/test-orbit-pr.yml vendored Normal file
View File

@@ -0,0 +1,50 @@
name: Test Orbit Auto PR
on:
pull_request:
branches:
- porting
jobs:
run-gradle-taks:
runs-on: self-hosted
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Fetch all branches and tags
run: git fetch --all
- name: Set Up JDK
uses: actions/setup-java@v3
with:
distribution: zulu
java-version: 17
- name: Cache Gradle dependencies
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Setup Workspace
run: chmod +x ./gradle && ./gradlew setupWorkspace
- name: Test LTS Branches
run: |
for dir in dev/*/ ; do
if [ -d "$dir" ]; then
echo "Running Gradle build for $dir"
cd "$dir"
chmod +x ./gradlew
./gradlew build
cd -
fi
done

View File

@@ -1 +1 @@
d9fcf547281e42215550a62152f436953b550e68
55c6f60197e1b916ecb6b1e84747838c9e4c1c67

0
gradlew vendored Normal file → Executable file
View File