File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Qt Build Check
2+
3+ on :
4+ push :
5+ branches : [main, master]
6+ pull_request :
7+ branches : [main, master]
8+
9+ jobs :
10+ build-qt-native :
11+ name : Native Qt Build
12+ runs-on : ubuntu-latest
13+ steps :
14+ - name : Checkout repository
15+ uses : actions/checkout@v4
16+
17+ - name : Build Docker image
18+ run : docker build -f docker/qt.Dockerfile -t aris-qt .
19+
20+
21+
22+ build-qt-wasm :
23+ name : WebAssembly Build
24+ runs-on : ubuntu-latest
25+ steps :
26+ - name : Checkout repository
27+ uses : actions/checkout@v4
28+
29+ - name : Build Docker image
30+ run : docker build -f docker/wasm.Dockerfile -t aris-wasm .
31+
32+
33+
34+ all-builds :
35+ name : All Builds Passed
36+ runs-on : ubuntu-latest
37+ needs : [build-qt-native, build-qt-wasm]
38+ steps :
39+ - name : Confirm success
40+ run : echo "All builds passed successfully."
You can’t perform that action at this time.
0 commit comments