do this instead for linux
This commit is contained in:
parent
aa1aa92a86
commit
c217a30171
|
@ -15,14 +15,18 @@ jobs:
|
||||||
env:
|
env:
|
||||||
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
|
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: make test-library-xcode
|
run: make test-library-xcode
|
||||||
|
|
||||||
library-linux:
|
library-linux:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: swift:5.7
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1.0.0
|
- uses: actions/checkout@v3
|
||||||
|
- name: Install make
|
||||||
|
run: apt update && apt install make -y
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: make test-library
|
run: make test-library
|
||||||
|
|
||||||
|
@ -31,6 +35,6 @@ jobs:
|
||||||
env:
|
env:
|
||||||
DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer
|
DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: make build-examples
|
run: make build-examples
|
||||||
|
|
Loading…
Reference in New Issue