Skip to content

Commit

Permalink
Add support for 5.9-DEVELOPMENT-SNAPSHOT-2023-08-25-a
Browse files Browse the repository at this point in the history
  • Loading branch information
vzsg committed Aug 29, 2023
1 parent e75a8a6 commit 41f986c
Showing 1 changed file with 38 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
case "$PLATFORM" in
'osx' )
URL="https://download.swift.org/swift-5.9-branch/xcode/swift-5.9-DEVELOPMENT-SNAPSHOT-2023-08-25-a/swift-5.9-DEVELOPMENT-SNAPSHOT-2023-08-25-a-osx.pkg"
;;

'ubuntu14.04' )
echo
echo " ! Swift 5.9 does not support Ubuntu 14.04."
echo " ! Please upgrade your stack using the 'heroku stack:set' command or via the dashboard."
echo " ! If that is not an option, pin an older version of Swift."
echo
exit 1
;;

'ubuntu16.04' )
echo
echo " ! Swift 5.9 does not support Ubuntu 16.04."
echo " ! Please upgrade your stack using the 'heroku stack:set' command or via the dashboard."
echo " ! If that is not an option, pin an older version of Swift."
echo
exit 1
;;

'ubuntu18.04' )
URL="https://download.swift.org/swift-5.9-branch/ubuntu1804/swift-5.9-DEVELOPMENT-SNAPSHOT-2023-08-25-a/swift-5.9-DEVELOPMENT-SNAPSHOT-2023-08-25-a-ubuntu18.04.tar.gz"
;;

'ubuntu20.04' )
URL="https://download.swift.org/swift-5.9-branch/ubuntu2004/swift-5.9-DEVELOPMENT-SNAPSHOT-2023-08-25-a/swift-5.9-DEVELOPMENT-SNAPSHOT-2023-08-25-a-ubuntu20.04.tar.gz"
;;

'ubuntu22.04' )
URL="https://download.swift.org/swift-5.9-branch/ubuntu2204/swift-5.9-DEVELOPMENT-SNAPSHOT-2023-08-25-a/swift-5.9-DEVELOPMENT-SNAPSHOT-2023-08-25-a-ubuntu22.04.tar.gz"
;;

* )
;;
esac

0 comments on commit 41f986c

Please sign in to comment.