-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Windows CI Fix \r\n from Windows
- Loading branch information
Showing
11 changed files
with
305 additions
and
306 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 |
---|---|---|
@@ -1,19 +1,12 @@ | ||
name: Amazon Linux 2 | ||
|
||
on: [push, pull_request] | ||
on: [push] | ||
|
||
jobs: | ||
linux: | ||
name: Amazon Linux 2 | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
swift: | ||
- 5.3 | ||
- 5.3.1 | ||
distro: | ||
- amazonlinux2 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Test | ||
run: Scripts/docker.sh TOMLDecoder 'swift test -Xswiftc -warnings-as-errors --enable-test-discovery' ${{ matrix.swift }} ${{ matrix.distro }} | ||
run: Scripts/docker.sh TOMLDecoder 'swift test -Xswiftc -warnings-as-errors --enable-test-discovery' 5.5.3 amazonlinux2 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,14 @@ | ||
name: macOS | ||
|
||
on: [push] | ||
|
||
jobs: | ||
macos: | ||
name: macOS | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Xcode version | ||
run: sudo xcode-select -s /Applications/Xcode_13.2.app | ||
- name: Test | ||
run: make test-SwiftPM |
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 |
---|---|---|
@@ -1,19 +1,12 @@ | ||
name: Ubuntu Bionic | ||
|
||
on: [push, pull_request] | ||
on: [push] | ||
|
||
jobs: | ||
linux: | ||
name: Ubuntu Bionic | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
swift: | ||
- 5.3 | ||
- 5.3.1 | ||
distro: | ||
- bionic | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Test | ||
run: Scripts/docker.sh TOMLDecoder 'swift test -Xswiftc -warnings-as-errors --enable-test-discovery' ${{ matrix.swift }} ${{ matrix.distro }} | ||
run: Scripts/docker.sh TOMLDecoder 'swift test -Xswiftc -warnings-as-errors --enable-test-discovery' 5.5.3 bionic |
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 |
---|---|---|
@@ -1,19 +1,12 @@ | ||
name: Ubuntu Focal | ||
|
||
on: [push, pull_request] | ||
on: [push] | ||
|
||
jobs: | ||
linux: | ||
name: Ubuntu Focal | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
swift: | ||
- 5.3 | ||
- 5.3.1 | ||
distro: | ||
- focal | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Test | ||
run: Scripts/docker.sh TOMLDecoder 'swift test -Xswiftc -warnings-as-errors --enable-test-discovery' ${{ matrix.swift }} ${{ matrix.distro }} | ||
run: Scripts/docker.sh TOMLDecoder 'swift test -Xswiftc -warnings-as-errors --enable-test-discovery' 5.5.3 focal |
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,21 @@ | ||
name: Windows 2019 | ||
|
||
on: [push] | ||
|
||
jobs: | ||
Windows: | ||
name: Windows | ||
runs-on: windows-2019 | ||
steps: | ||
- name: Check out | ||
uses: actions/checkout@v2 | ||
- name: Install Swift | ||
uses: compnerd/gha-setup-swift@cf2a61060c146203ea6fe10cce367979ae4ec0b1 | ||
with: | ||
branch: swift-5.5.3-release | ||
tag: 5.5.3-RELEASE | ||
- name: Test | ||
shell: cmd | ||
run: | | ||
echo on | ||
swift test -Xswiftc -warnings-as-errors |
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.