From 4ac51c3f17c9732ee938b327592ff6a218ca9d76 Mon Sep 17 00:00:00 2001 From: Yuta Saito Date: Thu, 20 Feb 2025 06:53:16 +0000 Subject: [PATCH] [swift] Add a GitHub Actions workflow for distribution --- .github/workflows/build-swift-debugging.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/build-swift-debugging.yaml diff --git a/.github/workflows/build-swift-debugging.yaml b/.github/workflows/build-swift-debugging.yaml new file mode 100644 index 00000000000..8ce67aca202 --- /dev/null +++ b/.github/workflows/build-swift-debugging.yaml @@ -0,0 +1,19 @@ +name: Build Swift Debugging Extension +on: + push: + branches: + - swift-debugging +jobs: + build-extension: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + - 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