Commit 152e608 1 parent 4357dec commit 152e608 Copy full SHA for 152e608
File tree 6 files changed +19
-17
lines changed
Sources/GateEngine/System/HID/GamePad/GamePadInterpreter/Interpreters/HID
6 files changed +19
-17
lines changed Original file line number Diff line number Diff line change @@ -15,18 +15,16 @@ jobs:
15
15
steps :
16
16
- uses : actions/checkout@v3
17
17
18
- - name : Install Carton
19
- run : brew install swiftwasm/tap/carton
20
-
21
18
- name : Test Insecure Context
22
- run : carton test --environment defaultBrowser --host 127.0.0.1
19
+ run : swift run carton test --environment defaultBrowser --host 127.0.0.1
23
20
24
- - name : Archive
25
- uses : actions/upload-artifact@v3
26
- if : always()
27
- with :
28
- name : Wasm Binary
29
- path : .build/wasm32-unknown-wasi/**/*.wasm
21
+ # - name: Archive
22
+ # uses: actions/upload-artifact@v3
23
+ # if: always()
24
+ # with:
25
+ # name: Wasm Binary
26
+ # path: .build/wasm32-unknown-wasi/**/*.wasm
27
+
30
28
# TODO: Figure out how to make chrome default without a confirmation
31
29
# - name: Make Chrome Default
32
30
# run: open -a "Google Chrome" --args --make-default-browser
Original file line number Diff line number Diff line change 19
19
20
20
- name : Install Linux Dependencies
21
21
run : sudo apt-get update --fix-missing; sudo apt-get install freeglut3-dev; sudo apt-get install libopenal-dev
22
+
23
+ - name : Install Swift
24
+ curl -L https://swiftlang.github.io/swiftly/swiftly-install.sh | bash
25
+ swiftly install 5.10.1
22
26
23
27
- name : Swift Version
24
28
run : swift --version
Original file line number Diff line number Diff line change 14
14
steps :
15
15
- uses : compnerd/gha-setup-swift@main
16
16
with :
17
- branch : swift-5.8 .1-release
18
- tag : 5.8 .1-RELEASE
17
+ branch : swift-5.10 .1-release
18
+ tag : 5.10 .1-RELEASE
19
19
- uses : actions/checkout@v3
20
20
21
21
- name : Swift Version
Original file line number Diff line number Diff line change 10
10
11
11
jobs :
12
12
Build_Test-macOS-iOS :
13
- runs-on : macos-13
13
+ runs-on : macos-14
14
14
steps :
15
15
- uses : actions/checkout@v3
16
16
17
17
- name : Select Xcode version
18
- run : sudo xcode-select -s '/Applications/Xcode_15.0 .app/Contents/Developer'
18
+ run : sudo xcode-select -s '/Applications/Xcode_15.4 .app/Contents/Developer'
19
19
20
20
- name : Swift Version
21
21
run : swift --version
Original file line number Diff line number Diff line change 10
10
11
11
jobs :
12
12
Build_Test-macOS-macOS :
13
- runs-on : macos-13
13
+ runs-on : macos-14
14
14
steps :
15
15
- uses : actions/checkout@v3
16
16
17
17
- name : Select Xcode version
18
- run : sudo xcode-select -s '/Applications/Xcode_15.0 .app/Contents/Developer'
18
+ run : sudo xcode-select -s '/Applications/Xcode_15.4 .app/Contents/Developer'
19
19
20
20
- name : Swift Version
21
21
run : swift --version
Original file line number Diff line number Diff line change 7
7
#if canImport(IOKit)
8
8
import Foundation
9
9
import CoreFoundation
10
- fileprivate import IOKit. hid
10
+ import IOKit. hid
11
11
12
12
private class HIDController {
13
13
let guid : SDL2ControllerGUID
You can’t perform that action at this time.
0 commit comments