Skip to content

Commit

Permalink
For travis set macOS build image in .travis.yml and macOS versions in…
Browse files Browse the repository at this point in the history
… Makefile to 10.15
  • Loading branch information
wolf81 committed Jun 5, 2020
1 parent a8a1129 commit 420d775
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: swift
osx_image: xcode10.2
osx_image: xcode11.5
xcode_destination: platform=macOS
xcode_workspace: Harptos.xcworkspace
xcode_scheme: "Harptos macOS"
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

test:
# test project
set -o pipefail && xcodebuild test -scheme "Harptos macOS" -destination "platform=macOS,arch=x86_64" OBJROOT="$(PWD)/build" -sdk "macosx10.14" | xcpretty
set -o pipefail && xcodebuild test -scheme "Harptos macOS" -destination "platform=macOS,arch=x86_64" OBJROOT="$(PWD)/build" -sdk "macosx10.15" | xcpretty

build:
# build project
set -o pipefail && xcodebuild build -scheme "Harptos macOS" -destination "platform=macOS,arch=x86_64" OBJROOT="$(PWD)/build" -sdk "macosx10.14" | xcpretty
set -o pipefail && xcodebuild build -scheme "Harptos macOS" -destination "platform=macOS,arch=x86_64" OBJROOT="$(PWD)/build" -sdk "macosx10.15" | xcpretty

clean:
# clean project
Expand Down

0 comments on commit 420d775

Please sign in to comment.