Skip to content

Commit 4ac51c3

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

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+
- uses: actions/setup-node@v4
12+
with:
13+
node-version: '22'
14+
- run: ./tools/bootstrap.py ../../out -no-check -release-version 90001 -patch-level 0
15+
working-directory: ./extensions/cxx_debugging/
16+
- uses: actions/upload-artifact@v4
17+
with:
18+
name: cxx_debugging_extension
19+
path: ./out/DevTools_CXX_Debugging.stage2/cxx_debugging_extension-*.zip

0 commit comments

Comments
 (0)