Skip to content

Commit

Permalink
ci: some more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbaliasnikov committed Feb 5, 2025
1 parent 205fd80 commit a004062
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/lnt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
options: -m 110g
env:
RESULTS_DIR: results
LNT_SERVER_URL: http://llvm-lnt.infra.matterlabs.corp/db_default/v4
LNT_SERVER_URL: http://llvm-lnt.infra.matterlabs.corp
LNT_TEST_SUITE: zksync
CONFIG_FILE: lntadmin.yaml

Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
run: |
for JSON in $(ls ${RESULTS_DIR}/*.json); do
lnt submit --ignore-regressions --select-machine=update \
${LNT_SERVER_URL}/${LNT_TEST_SUITE}/submitRun \
${LNT_SERVER_URL}/db_default/v4/${LNT_TEST_SUITE}/submitRun \
"${JSON}" >> lnt_results.txt 2>&1 || true
done
Expand All @@ -200,7 +200,7 @@ jobs:
shell: bash -ex {0}
run: |
lnt admin create-config
sed -i 's|lnt_url: "http://localhost:8000"|lnt_url: "${LNT_URL}"|' "${CONFIG_FILE}"
sed -i "s|lnt_url: \"http://localhost:8000\"|lnt_url: \"${LNT_SERVER_URL}\"|" "${CONFIG_FILE}"
sed -i 's|testsuite: nts|testsuite: zksync|' "${CONFIG_FILE}"
sed -i 's|# auth_token: .*|auth_token: '"'"'${{ secrets.LNT_ADMIN_TOKEN }}'"'"'|' "${CONFIG_FILE}"
Expand All @@ -218,7 +218,7 @@ jobs:
RUN_MACHINE=$(jq -r '.machine.name' run_${RUN}.json)
MAIN_MACHINE="${RUN_MACHINE//DEV__/}"
LATEST_MAIN_RUN=$(lnt admin list-runs ${MAIN_MACHINE} | head -n 1 | cut -d ' ' -f2)
echo "${LNT_SERVER_URL}/${LNT_TEST_SUITE}/${RUN}?compare_to=${LATEST_MAIN_RUN}" >> comparison_links.txt
echo "${LNT_SERVER_URL}/db_default/v4/${LNT_TEST_SUITE}/${RUN}?compare_to=${LATEST_MAIN_RUN}" >> comparison_links.txt
done
cat comparison_links.txt
Expand Down

0 comments on commit a004062

Please sign in to comment.