Skip to content

Commit 2c19909

Browse files
committed
ci: clean JIT test against #2092 continuous (no stray '\;')
1 parent 734edd0 commit 2c19909

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/jit-clean.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: JIT clean test (2092)
2+
on: { push: { branches: [jit-clean-2092] }, workflow_dispatch: {} }
3+
jobs:
4+
jit-windows:
5+
runs-on: windows-latest
6+
steps:
7+
- uses: actions/checkout@v4
8+
with: { path: addon }
9+
- id: sdk
10+
uses: ossia/actions/download-score-sdk@master
11+
with: { version: continuous }
12+
- name: Get score (continuous = #2092)
13+
shell: bash
14+
run: curl -L -O "https://github.com/ossia/score/releases/download/continuous/ossia.score-master-win64.exe" && 7z x -y "ossia.score-master-win64.exe"
15+
- name: JIT compile add-on (clean - no stray ';')
16+
shell: bash
17+
env:
18+
SCORE_JIT_SDK: ${{ steps.sdk.outputs.sdk-path }}
19+
QT_QPA_PLATFORM: offscreen
20+
SCORE_AUDIO_BACKEND: dummy
21+
QT_FORCE_STDERR_LOGGING: 1
22+
QT_ASSUME_STDERR_HAS_CONSOLE: 1
23+
run: |
24+
./score.exe --no-gui --compile-addon ./addon
25+
echo "score exit code: $?"

0 commit comments

Comments
 (0)