chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "gradle"
|
||||
directory: "/android"
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
day: "monday"
|
||||
open-pull-requests-limit: 10
|
||||
labels:
|
||||
- "dependencies"
|
||||
reviewers:
|
||||
- "AidanPark"
|
||||
|
||||
- package-ecosystem: "github-actions"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
day: "monday"
|
||||
open-pull-requests-limit: 5
|
||||
labels:
|
||||
- "ci"
|
||||
reviewers:
|
||||
- "AidanPark"
|
||||
|
||||
- package-ecosystem: "npm"
|
||||
directory: "/android/www"
|
||||
schedule:
|
||||
interval: "weekly"
|
||||
day: "monday"
|
||||
open-pull-requests-limit: 5
|
||||
labels:
|
||||
- "dependencies"
|
||||
reviewers:
|
||||
- "AidanPark"
|
||||
@@ -0,0 +1,91 @@
|
||||
name: Android Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
paths:
|
||||
- 'android/**'
|
||||
- '.github/workflows/android-build.yml'
|
||||
pull_request:
|
||||
branches: [main]
|
||||
paths:
|
||||
- 'android/**'
|
||||
- '.github/workflows/android-build.yml'
|
||||
|
||||
jobs:
|
||||
build-www:
|
||||
name: Build WebView UI
|
||||
runs-on: ubuntu-latest
|
||||
defaults:
|
||||
run:
|
||||
working-directory: android/www
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '22'
|
||||
cache: 'npm'
|
||||
cache-dependency-path: android/www/package-lock.json
|
||||
|
||||
- run: npm ci
|
||||
- run: npm run build
|
||||
- run: cd dist && zip -r ../www.zip .
|
||||
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: www-zip
|
||||
path: android/www/www.zip
|
||||
|
||||
build-apk:
|
||||
name: Build APK
|
||||
runs-on: ubuntu-latest
|
||||
needs: build-www
|
||||
defaults:
|
||||
run:
|
||||
working-directory: android
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: 'temurin'
|
||||
java-version: '21'
|
||||
|
||||
- uses: android-actions/setup-android@v4
|
||||
|
||||
- name: Cache Gradle
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
path: |
|
||||
~/.gradle/caches
|
||||
~/.gradle/wrapper
|
||||
key: gradle-${{ hashFiles('android/**/*.gradle*', 'android/gradle/libs.versions.toml') }}
|
||||
restore-keys: gradle-
|
||||
|
||||
- name: Build debug APK
|
||||
run: ./gradlew assembleDebug
|
||||
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: app-debug
|
||||
path: android/app/build/outputs/apk/debug/app-debug.apk
|
||||
|
||||
release:
|
||||
name: Create Release
|
||||
runs-on: ubuntu-latest
|
||||
needs: [build-www, build-apk]
|
||||
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: app-debug
|
||||
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: www-zip
|
||||
|
||||
# Release is created manually — artifacts are available for download
|
||||
# To create a tagged release, push a tag: git tag v1.0.0 && git push --tags
|
||||
@@ -0,0 +1,187 @@
|
||||
name: Code Quality
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
shellcheck:
|
||||
name: ShellCheck
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Install shellcheck
|
||||
run: sudo apt-get install -y shellcheck
|
||||
|
||||
- name: Run shellcheck
|
||||
run: |
|
||||
find . -name '*.sh' \
|
||||
-not -path './android/app/build/*' \
|
||||
-not -path './node_modules/*' \
|
||||
-not -path './.agent/*' \
|
||||
-print0 | xargs -0 --no-run-if-empty shellcheck --format=gcc
|
||||
|
||||
script-sync:
|
||||
name: Script Sync Check
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Verify post-setup.sh sync
|
||||
run: |
|
||||
if ! diff -q post-setup.sh android/app/src/main/assets/post-setup.sh; then
|
||||
echo "ERROR: post-setup.sh files are out of sync!"
|
||||
echo " Root: post-setup.sh"
|
||||
echo " App: android/app/src/main/assets/post-setup.sh"
|
||||
echo "Both files must have identical content."
|
||||
exit 1
|
||||
fi
|
||||
echo "post-setup.sh files are in sync."
|
||||
|
||||
markdownlint:
|
||||
name: Markdown Lint
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '22'
|
||||
|
||||
- name: Install markdownlint-cli2
|
||||
run: npm install -g markdownlint-cli2
|
||||
|
||||
- name: Run markdownlint
|
||||
run: markdownlint-cli2 '**/*.md' '!node_modules' '!android/www/node_modules' '!android/www/dist' '!android/app/build'
|
||||
|
||||
doc-freshness:
|
||||
name: Document Freshness
|
||||
runs-on: ubuntu-latest
|
||||
if: github.event_name == 'pull_request'
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Check document freshness
|
||||
env:
|
||||
BASE_SHA: ${{ github.event.pull_request.base.sha }}
|
||||
HEAD_SHA: ${{ github.event.pull_request.head.sha }}
|
||||
run: |
|
||||
CHANGED=$(git diff --name-only "$BASE_SHA" "$HEAD_SHA")
|
||||
|
||||
WARN=0
|
||||
|
||||
check_doc() {
|
||||
local pattern="$1"
|
||||
local doc="$2"
|
||||
local label="$3"
|
||||
if echo "$CHANGED" | grep -qE "$pattern"; then
|
||||
if ! echo "$CHANGED" | grep -qE "$doc"; then
|
||||
echo "Warning: $label code changed but $doc was not updated."
|
||||
WARN=1
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
check_doc '^install\.sh$' '^README\.md$' 'install.sh'
|
||||
check_doc '^oa\.sh$' '^README\.md$' 'oa.sh'
|
||||
check_doc '^(update\.sh|update-core\.sh)$' '^(README\.md|CHANGELOG\.md)$' 'update scripts'
|
||||
check_doc '^bootstrap\.sh$' '^README\.md$' 'bootstrap.sh'
|
||||
check_doc '^scripts/install-' '^README\.md$' 'install scripts'
|
||||
check_doc '^platforms/openclaw/' '^README\.md$' 'platform scripts'
|
||||
|
||||
# Check 3-language sync for docs/ files
|
||||
for doc in $(echo "$CHANGED" | grep -E '^docs/.*\.md$' | grep -v '\.(ko|zh)\.md$'); do
|
||||
ko_doc="${doc%.md}.ko.md"
|
||||
zh_doc="${doc%.md}.zh.md"
|
||||
if [ -f "$ko_doc" ] && ! echo "$CHANGED" | grep -qF "$ko_doc"; then
|
||||
echo "Warning: $doc changed but Korean version $ko_doc was not updated."
|
||||
WARN=1
|
||||
fi
|
||||
if [ -f "$zh_doc" ] && ! echo "$CHANGED" | grep -qF "$zh_doc"; then
|
||||
echo "Warning: $doc changed but Chinese version $zh_doc was not updated."
|
||||
WARN=1
|
||||
fi
|
||||
done
|
||||
|
||||
# Check 3-language sync for README
|
||||
if echo "$CHANGED" | grep -qE '^README\.md$'; then
|
||||
if ! echo "$CHANGED" | grep -qE '^README\.ko\.md$'; then
|
||||
echo "Warning: README.md changed but README.ko.md was not updated."
|
||||
WARN=1
|
||||
fi
|
||||
if ! echo "$CHANGED" | grep -qE '^README\.zh\.md$'; then
|
||||
echo "Warning: README.md changed but README.zh.md was not updated."
|
||||
WARN=1
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "$WARN" -eq 1 ]; then
|
||||
echo ""
|
||||
echo "Document freshness check: some docs may need updating."
|
||||
else
|
||||
echo "Document freshness check passed."
|
||||
fi
|
||||
|
||||
kotlin-lint:
|
||||
name: Kotlin Lint
|
||||
runs-on: ubuntu-latest
|
||||
defaults:
|
||||
run:
|
||||
working-directory: android
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: 'temurin'
|
||||
java-version: '21'
|
||||
|
||||
- uses: android-actions/setup-android@v4
|
||||
|
||||
- name: Cache Gradle
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
path: |
|
||||
~/.gradle/caches
|
||||
~/.gradle/wrapper
|
||||
key: gradle-${{ hashFiles('android/**/*.gradle*', 'android/gradle/libs.versions.toml') }}
|
||||
restore-keys: gradle-
|
||||
|
||||
- name: Run ktlint
|
||||
run: ./gradlew ktlintCheck
|
||||
|
||||
- name: Run detekt
|
||||
run: ./gradlew detekt
|
||||
|
||||
unit-tests:
|
||||
name: Unit Tests
|
||||
runs-on: ubuntu-latest
|
||||
defaults:
|
||||
run:
|
||||
working-directory: android
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: 'temurin'
|
||||
java-version: '21'
|
||||
|
||||
- uses: android-actions/setup-android@v4
|
||||
|
||||
- name: Cache Gradle
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
path: |
|
||||
~/.gradle/caches
|
||||
~/.gradle/wrapper
|
||||
key: gradle-${{ hashFiles('android/**/*.gradle*', 'android/gradle/libs.versions.toml') }}
|
||||
restore-keys: gradle-
|
||||
|
||||
- name: Run unit tests
|
||||
run: ./gradlew test
|
||||
Reference in New Issue
Block a user