Skip to content

Commit

Permalink
Update dependencies, check for codegen output
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxDesiatov committed Aug 28, 2022
1 parent ef2d1ca commit dedd025
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,29 @@ on:

jobs:
macos_test:
runs-on: macos-12
strategy:
matrix:
include:
- os: macos-11
xcode: Xcode_13.2.1
- os: macos-12
xcode: Xcode_13.4.1
- os: macos-12
xcode: Xcode_14.0

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- name: Check if codegen output is stale
run: |
swift run WebIDLToSwift
git diff --exit-code *
- name: Run the test suite on macOS
shell: bash
run: |
set -ex
sudo xcode-select --switch /Applications/Xcode_13.3.1.app/Contents/Developer/
sudo xcode-select --switch /Applications/${{ matrix.xcode }}.app/Contents/Developer/
brew install swiftwasm/tap/carton
Expand Down
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/swiftwasm/JavaScriptKit.git",
"state": {
"branch": null,
"revision": "2d7bc960eed438dce7355710ece43fa004bbb3ac",
"version": "0.15.0"
"revision": "a129f62171bf3610633313c2db6acdca41cdb195",
"version": "0.16.0"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ let package = Package(
dependencies: [
.package(
url: "https://github.com/swiftwasm/JavaScriptKit.git",
from: "0.15.0"
from: "0.16.0"
),
],
targets: [
Expand Down
2 changes: 1 addition & 1 deletion Sources/WebIDLToSwift/PackageManifest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func generateManifest(_ modules: [Module]) -> String {
dependencies: [
.package(
url: "https://github.com/swiftwasm/JavaScriptKit.git",
from: "0.15.0"
from: "0.16.0"
),
],
targets: [
Expand Down

0 comments on commit dedd025

Please sign in to comment.