Skip to content

Commit 680cb26

Browse files
authored
Update Linux to 5.2 and simpler Docker (pointfreeco#329)
1 parent f7e7105 commit 680cb26

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

Dockerfile

-9
This file was deleted.

Makefile

+9-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@ xcodeproj:
22
PF_DEVELOP=1 swift run xcodegen
33

44
test-linux:
5-
docker build --tag snapshot-testing . \
6-
&& docker run --rm snapshot-testing
5+
docker run \
6+
--rm \
7+
-v "$(PWD):$(PWD)" \
8+
-w "$(PWD)" \
9+
swift:5.2 \
10+
bash -c 'make test-swift'
711

812
test-macos:
913
set -o pipefail && \
@@ -18,7 +22,9 @@ test-ios:
1822
-destination platform="iOS Simulator,name=iPhone 11 Pro Max,OS=13.3" \
1923

2024
test-swift:
21-
swift test
25+
swift test \
26+
--enable-pubgrub-resolver \
27+
--parallel
2228

2329
test-tvos:
2430
set -o pipefail && \

0 commit comments

Comments
 (0)