Skip to content

Commit 7615e05

Browse files
committed
ci: pull PR#2098 instrumented artifact directly (no publish)
1 parent 3ee5e70 commit 7615e05

1 file changed

Lines changed: 9 additions & 11 deletions

File tree

.github/workflows/jit-clean.yml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
name: JIT clean test (2092)
1+
name: JIT diag test (PR2098)
22
on: { push: { branches: [jit-clean-2092] }, workflow_dispatch: {} }
33
jobs:
44
jit-windows:
55
runs-on: windows-latest
66
steps:
77
- uses: actions/checkout@v4
88
with: { path: addon }
9-
- name: Get score + SDK (continuous = #2092), self-contained
9+
- name: Download instrumented score (ossia/score PR #2098 artifact, no publish)
1010
shell: bash
11+
env: { GH_TOKEN: "${{ github.token }}" }
1112
run: |
1213
set -x
13-
curl -L -O "https://github.com/ossia/score/releases/download/continuous/ossia.score-master-win64.exe"
14-
curl -L -O "https://github.com/ossia/score/releases/download/continuous/sdk-windows-x86_64.zip"
15-
7z x -y "ossia.score-master-win64.exe" >/dev/null
16-
mkdir sdk && (cd sdk && unzip -qq ../sdk-windows-x86_64.zip)
17-
ls; ls sdk
18-
- name: JIT compile add-on (clean, no stray ';')
14+
gh run download 28138612496 -R ossia/score -n windows --dir dl
15+
ls -la dl
16+
7z x -y "dl/ossia score-merge-win64.exe" >/dev/null
17+
mkdir sdk && (cd sdk && unzip -qq "../dl/sdk-windows-x86_64.zip")
18+
- name: JIT compile add-on with INSTRUMENTED score
1919
shell: bash
2020
env:
2121
QT_QPA_PLATFORM: offscreen
@@ -26,6 +26,4 @@ jobs:
2626
export SCORE_JIT_SDK="$(pwd)/sdk/usr"
2727
set +e
2828
./score.exe --no-gui --compile-addon ./addon
29-
rc=$?
30-
echo "SCORE_EXIT=$rc"
31-
exit $rc
29+
echo "SCORE_EXIT=$?"

0 commit comments

Comments
 (0)