Skip to content

Commit 490ab2a

Browse files
[swift] Add a GitHub Actions workflow for distribution
1 parent aea3c02 commit 490ab2a

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Diff for: .github/workflows/build-swift-debugging.yaml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Build Swift Debugging Extension
2+
on:
3+
push:
4+
branches:
5+
- swift-debugging
6+
jobs:
7+
build-extension:
8+
runs-on: ubuntu-22.04
9+
steps:
10+
- uses: actions/checkout@v4
11+
with:
12+
submodules: 'recursive'
13+
- uses: actions/setup-node@v4
14+
with:
15+
node-version: '22'
16+
- run: ./tools/bootstrap.py ../../out -no-check -release-version 90001 -patch-level 0
17+
working-directory: ./extensions/cxx_debugging/
18+
- uses: actions/upload-artifact@v4
19+
with:
20+
name: cxx_debugging_extension
21+
path: ./out/DevTools_CXX_Debugging.stage2/cxx_debugging_extension-*.zip

0 commit comments

Comments
 (0)