Skip to content

Commit

Permalink
[swift] Add a GitHub Actions workflow for distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
kateinoigakukun committed Feb 20, 2025
1 parent aea3c02 commit 490ab2a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build-swift-debugging.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build Swift Debugging Extension
on:
push:
branches:
- swift-debugging
jobs:
build-extension:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- uses: actions/setup-node@v4
with:
node-version: '22'
- run: ./tools/bootstrap.py ../../out -no-check -release-version 90001 -patch-level 0
working-directory: ./extensions/cxx_debugging/
- uses: actions/upload-artifact@v4
with:
name: cxx_debugging_extension
path: ./out/DevTools_CXX_Debugging.stage2/cxx_debugging_extension-*.zip

0 comments on commit 490ab2a

Please sign in to comment.