Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ jobs:

- name: Set up ArkAnalyzer
run: |
REPO_URL="https://gitee.com/Lipenx/arkanalyzer.git"
REPO_URL="https://gitcode.com/Lipen/arkanalyzer"
DEST_DIR="arkanalyzer"
MAX_RETRIES=10
RETRY_DELAY=3 # Delay between retries in seconds
BRANCH="neo/2025-02-13"
BRANCH="neo/2025-02-24"

for ((i=1; i<=MAX_RETRIES; i++)); do
git clone --depth=1 --branch $BRANCH $REPO_URL $DEST_DIR && break
Expand Down
6 changes: 3 additions & 3 deletions jacodb-ets/ARKANALYZER.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Clone and install the ArkAnalyzer via NPM:

```shell
cd ~/dev
git clone https://gitee.com/openharmony-sig/arkanalyzer
git clone https://gitcode.com/openharmony-sig/arkanalyzer
cd arkanalyzer
npm install
npm run build
Expand All @@ -16,10 +16,10 @@ The `npm run build` command will generate the `out` directory, which contains th

### Usage of forked ArkAnalyzer

Most probably, you will have to use our fork of ArkAnalyzer (https://gitee.com/Lipenx/arkanalyzer) and checkout a specific branch that is consistent with the current state of jacodb.
Most probably, you will have to use our fork of ArkAnalyzer (https://gitcode.com/Lipen/arkanalyzer) and checkout a specific branch that is consistent with the current state of jacodb.
For this, replace the repo url in the commands above and use `git switch <branch>` to checkout the desired branch.

> Latest supported AA branch is `neo/2025-02-13`.
> Latest supported AA branch is `neo/2025-02-24`.

## Serialize TS to JSON

Expand Down
28 changes: 14 additions & 14 deletions jacodb-ets/src/test/resources/prepare_repos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ function prepare_repo() {
fi
}

prepare_repo https://gitee.com/openharmony/applications_app_samples
prepare_repo https://gitee.com/openharmony/applications_calendar_data
prepare_repo https://gitee.com/openharmony/applications_call
prepare_repo https://gitee.com/openharmony/applications_contacts
prepare_repo https://gitee.com/openharmony/applications_filepicker
prepare_repo https://gitee.com/openharmony/applications_hap
prepare_repo https://gitee.com/openharmony/applications_launcher
prepare_repo https://gitee.com/openharmony/applications_mms
prepare_repo https://gitee.com/openharmony/applications_notes
prepare_repo https://gitee.com/openharmony/applications_print_spooler
prepare_repo https://gitee.com/openharmony/applications_screenlock
prepare_repo https://gitee.com/openharmony/applications_settings
prepare_repo https://gitee.com/openharmony/applications_settings_data
prepare_repo https://gitee.com/openharmony/applications_systemui
prepare_repo https://gitcode.com/openharmony/applications_app_samples
prepare_repo https://gitcode.com/openharmony/applications_calendar_data
prepare_repo https://gitcode.com/openharmony/applications_call
prepare_repo https://gitcode.com/openharmony/applications_contacts
prepare_repo https://gitcode.com/openharmony/applications_filepicker
prepare_repo https://gitcode.com/openharmony/applications_hap
prepare_repo https://gitcode.com/openharmony/applications_launcher
prepare_repo https://gitcode.com/openharmony/applications_mms
prepare_repo https://gitcode.com/openharmony/applications_notes
prepare_repo https://gitcode.com/openharmony/applications_print_spooler
prepare_repo https://gitcode.com/openharmony/applications_screenlock
prepare_repo https://gitcode.com/openharmony/applications_settings
prepare_repo https://gitcode.com/openharmony/applications_settings_data
prepare_repo https://gitcode.com/openharmony/applications_systemui

wait
Loading