Add AnyAttributeFix to workaround compiler crash #512
Workflow file for this run
This file contains hidden or 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: Wasm | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| wasm_test: | |
| name: Execute tests on WASM | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| swift_version: ["6.0.2-RELEASE"] | |
| os: [ubuntu-22.04] | |
| extra_params: [""] | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| OPENSWIFTUI_WERROR: 1 | |
| OPENGRAPH_ATTRIBUTEGRAPH: 0 | |
| OPENSWIFTUI_COMPATIBILITY_TEST: 0 | |
| OPENSWIFTUI_SWIFT_LOG: 1 | |
| OPENSWIFTUI_SWIFT_CRYPTO: 1 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: swiftwasm/setup-swiftwasm@v1 | |
| with: | |
| swift-version: wasm-${{ matrix.swift_version }} | |
| - name: build | |
| run: | | |
| swift build --triple wasm32-unknown-wasi ${{ matrix.extra_params }} | |
| continue-on-error: true # See https://github.com/swiftwasm/swift/issues/5592 | |
| # - name: test | |
| # run: | | |
| # swift test --triple wasm32-unknown-wasi ${{ matrix.extra_params }} |