Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
working-directory: ./devtools
run: |
npm ci
npm run build
npm run build:${{ matrix.variant }}
env:
VITE_TRANSPORT: ${{ matrix.variant == 'wasm' && 'broadcast' || 'websocket' }}

Expand All @@ -58,7 +58,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: devtools-dist-${{ matrix.variant }}
path: devtools/dist
path: devtools/dist-${{ matrix.variant }}
build-emulator:
needs: build-debugger
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: devtools-dist-native
path: devtools/dist
path: devtools/dist-native
- name: "Native: Run SH4 tests"
if: matrix.target != 'wasm32-unknown-unknown' && matrix.target != 'aarch64-unknown-linux-gnu' && matrix.target != 'riscv64gc-unknown-linux-gnu' && matrix.target != 'aarch64-pc-windows-msvc'
run: cargo test --package sh4-core --target ${{ matrix.target }}
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: devtools-dist-wasm
path: devtools/dist
path: devtools/dist-wasm

- name: "WASM: Build code and site"
if: matrix.target == 'wasm32-unknown-unknown'
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ target/
dist/
.vscode/*
!.vscode/extensions.json
.claude/
.claude/
nul
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"name": "(Windows) Launch",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/target/debug/nullDC",
"program": "${workspaceFolder}/target/release/nullDC",
"args": [],
"stopAtEntry": false,
"cwd": "C:/Users/skmp/projects/nullDC",
Expand All @@ -19,7 +19,7 @@
"name": "(Windows) nulldc-minimal",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/target/debug/nulldc-minimal",
"program": "${workspaceFolder}/target/release/nulldc-minimal",
"args": [],
"stopAtEntry": false,
"cwd": "C:/Users/skmp/projects/nullDC",
Expand Down
Loading
Loading