Skip to content

Commit 4ff7243

Browse files
authored
Update ArkAnalyzer on CI (#325)
Use branch 'neo/2025-06-16'
1 parent 77b83e4 commit 4ff7243

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -125,25 +125,25 @@ jobs:
125125
REPO_URL="https://gitcode.com/Lipen/arkanalyzer"
126126
DEST_DIR="arkanalyzer"
127127
MAX_RETRIES=10
128-
RETRY_DELAY=3 # Delay between retries in seconds
129-
BRANCH="neo/2025-05-30b"
130-
128+
RETRY_DELAY=3 # Delay between retries in seconds
129+
BRANCH="neo/2025-06-16"
130+
131131
for ((i=1; i<=MAX_RETRIES; i++)); do
132132
git clone --depth=1 --branch $BRANCH $REPO_URL $DEST_DIR && break
133133
echo "Clone failed, retrying in $RETRY_DELAY seconds..."
134134
sleep "$RETRY_DELAY"
135135
done
136-
136+
137137
if [[ $i -gt $MAX_RETRIES ]]; then
138138
echo "Failed to clone the repository after $MAX_RETRIES attempts."
139139
exit 1
140140
else
141141
echo "Repository cloned successfully."
142142
fi
143-
143+
144144
echo "ARKANALYZER_DIR=$(realpath $DEST_DIR)" >> $GITHUB_ENV
145145
cd $DEST_DIR
146-
146+
147147
npm install
148148
npm run build
149149

0 commit comments

Comments
 (0)