-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
301 changed files
with
3,947 additions
and
914 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -382,13 +382,15 @@ jobs: | |
|
||
build-kotlin-macos: | ||
name: Build Kotlin MacOS | ||
runs-on: macos-latest | ||
runs-on: macos-13 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
# Force Xcode 14.3 since Xcode 15 doesnt support older versions of | ||
# kotlin. For Xcode 15, kotlin should be bumpped to 1.9.10 | ||
# https://stackoverflow.com/a/77150623 | ||
# For now, run with macos-13 which has this 14.3 installed: | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md#xcode | ||
- name: Set up Xcode version | ||
run: sudo xcode-select -s /Applications/Xcode_14.3.app/Contents/Developer | ||
- uses: gradle/[email protected] | ||
|
@@ -508,17 +510,16 @@ jobs: | |
name: Build Swift Wasm | ||
runs-on: ubuntu-24.04 | ||
container: | ||
image: ghcr.io/swiftwasm/carton:0.15.3 | ||
image: ghcr.io/swiftwasm/carton:0.20.1 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup Wasmer | ||
uses: wasmerio/setup-wasmer@v2 | ||
- uses: swiftwasm/setup-swiftwasm@v1 | ||
with: | ||
swift-version: "wasm-5.9.2-RELEASE" | ||
- name: Test | ||
working-directory: tests/swift/Wasm.tests | ||
run: swift run carton test | ||
- uses: actions/checkout@v3 | ||
- uses: bytecodealliance/actions/wasmtime/setup@v1 | ||
- uses: swiftwasm/setup-swiftwasm@v1 | ||
with: | ||
swift-version: "wasm-6.0.2-RELEASE" | ||
- name: Test | ||
working-directory: tests/swift/Wasm.tests | ||
run: swift run carton test | ||
|
||
build-ts: | ||
name: Build TS | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: docs | ||
on: | ||
# For manual pushes. | ||
workflow_dispatch: | ||
|
||
# Pushes to main that touch the documentation directory. | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- 'docs/**' | ||
|
||
permissions: | ||
contents: write | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Configure Git Credentials | ||
run: | | ||
git config user.name github-actions[bot] | ||
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV | ||
- uses: actions/cache@v4 | ||
with: | ||
key: mkdocs-material-${{ env.cache_id }} | ||
path: .cache | ||
restore-keys: | | ||
mkdocs-material- | ||
- run: pip install mkdocs-material | ||
- run: mkdocs gh-deploy --force -f docs/mkdocs.yml |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -155,3 +155,6 @@ _deps/ | |
kotlin/**/generated | ||
MODULE.bazel | ||
MODULE.bazel.lock | ||
|
||
# Ignore the generated docs | ||
docs/site |
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
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
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
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
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
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
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
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
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
File renamed without changes.
36 changes: 13 additions & 23 deletions
36
dart/test/list_of_enums_generated.dart → dart/test/enums_generated.dart
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
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
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
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
Oops, something went wrong.