Add JSTypedArray.copyMemory(to:)
method
#1365
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run unit tests | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
test: | |
name: Build and Test | |
strategy: | |
matrix: | |
entry: | |
- os: ubuntu-22.04 | |
toolchain: | |
download-url: https://download.swift.org/swift-6.0.2-release/ubuntu2204/swift-6.0.2-RELEASE/swift-6.0.2-RELEASE-ubuntu22.04.tar.gz | |
wasi-backend: Node | |
target: "wasm32-unknown-wasi" | |
- os: ubuntu-22.04 | |
toolchain: | |
download-url: https://download.swift.org/development/ubuntu2204/swift-DEVELOPMENT-SNAPSHOT-2025-02-26-a/swift-DEVELOPMENT-SNAPSHOT-2025-02-26-a-ubuntu22.04.tar.gz | |
wasi-backend: Node | |
target: "wasm32-unknown-wasi" | |
- os: ubuntu-22.04 | |
toolchain: | |
download-url: https://download.swift.org/development/ubuntu2204/swift-DEVELOPMENT-SNAPSHOT-2025-02-26-a/swift-DEVELOPMENT-SNAPSHOT-2025-02-26-a-ubuntu22.04.tar.gz | |
wasi-backend: Node | |
target: "wasm32-unknown-wasip1-threads" | |
runs-on: ${{ matrix.entry.os }} | |
env: | |
JAVASCRIPTKIT_WASI_BACKEND: ${{ matrix.entry.wasi-backend }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/install-swift | |
with: | |
download-url: ${{ matrix.entry.toolchain.download-url }} | |
- uses: swiftwasm/setup-swiftwasm@v2 | |
id: setup-swiftwasm | |
with: | |
target: ${{ matrix.entry.target }} | |
- name: Configure environment variables | |
run: | | |
echo "SWIFT_SDK_ID=${{ steps.setup-swiftwasm.outputs.swift-sdk-id }}" >> $GITHUB_ENV | |
echo "SWIFT_PATH=$(dirname $(which swiftc))" >> $GITHUB_ENV | |
- run: make bootstrap | |
- run: make unittest | |
# Skip unit tests with uwasi because its proc_exit throws | |
# unhandled promise rejection. | |
if: ${{ matrix.entry.wasi-backend != 'MicroWASI' }} | |
- name: Check if SwiftPM resources are stale | |
run: | | |
make regenerate_swiftpm_resources | |
git diff --exit-code Sources/JavaScriptKit/Runtime | |
- run: swift test --package-path ./Plugins/PackageToJS | |
native-build: | |
# Check native build to make it easy to develop applications by Xcode | |
name: Build for native target | |
strategy: | |
matrix: | |
include: | |
- os: macos-15 | |
xcode: Xcode_16 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- run: swift build | |
env: | |
DEVELOPER_DIR: /Applications/${{ matrix.xcode }}.app/Contents/Developer/ | |
format: | |
runs-on: ubuntu-latest | |
container: | |
image: swift:6.0.3 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: ./Utilities/format.swift | |
- name: Check for formatting changes | |
run: | | |
git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
git diff --exit-code || { | |
echo "::error::The formatting changed some files. Please run \`./Utilities/format.swift\` and commit the changes." | |
exit 1 | |
} |