Skip to content

Commit

Permalink
don't run Swift 5.0 tests on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
samdeane committed Feb 24, 2020
1 parent 0bc7fef commit fb1df61
Showing 1 changed file with 0 additions and 33 deletions.
33 changes: 0 additions & 33 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,6 @@ name: Tests
on: [push, pull_request]

jobs:
linux-50:
name: Linux (Swift 5.0)
runs-on: ubuntu-latest
container: swift:5.0
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Swift Version
run: swift --version
- name: Make Logs Directory
run: mkdir logs
- name: Build (Debug)
run: swift build -v -c debug
- name: Build (Release)
run: swift build -v -c release
- name: Test (Debug)
run: swift test -v -c debug
- name: Test (Release)
run: swift test -v -c release -Xswiftc -enable-testing
- name: Upload Logs
uses: actions/upload-artifact@v1
with:
name: logs
path: logs
- name: Slack Notification
uses: elegantchaos/slatify@master
if: always()
with:
type: ${{ job.status }}
job_name: 'Linux (Swift 5.0)'
mention_if: 'failure'
url: ${{ secrets.SLACK_WEBHOOK }}

linux-51:
name: Linux (Swift 5.1)
runs-on: ubuntu-latest
Expand Down

0 comments on commit fb1df61

Please sign in to comment.