-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
109 lines (90 loc) · 2.54 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#!/usr/bin/rake
require 'semantic'
require 'colorize'
### HELPERS ###
def generate_docs
print "> Executing tests"
sh "swift package generate-xcodeproj"
sh "jazzy --clean --sdk macosx --xcodebuild-arguments -scheme,xctools --skip-undocumented --no-download-badge"
end
def any_git_changes?
!`git status -s`.empty?
end
def build
sh "swift build"
end
def current_version
last_tag = `git describe --abbrev=0 --tags`
Semantic::Version.new last_tag
end
def next_version
current_version.increment! :minor
end
def bump_to_version(from, to)
`git add .`
`git commit -m "Bump version to #{to}"`
`git tag #{to}`
`git push origin --tags`
end
def print(message)
puts message.colorize(:yellow)
end
def get_archive_url(version)
'https://github.com/xcodeswift/xctools/archive/' + "#{version}" + '.tar.gz'
end
def download_archive(url)
# follow link, output errors, no progress meter
`curl -LSs #{url} -o xctools.tar.gz`
end
def get_checksum
`shasum -a 256 xctools.tar.gz | awk '{printf $1}'`
end
def update_formula(version)
path = 'Formula/xcode.rb'
archive_url = get_archive_url(version)
download_archive(archive_url)
newSha = %Q{"#{get_checksum}"}
newUrl = %Q{"#{archive_url}"}
`sed -i "" 's|url .*$|url #{newUrl}|' #{path}`
`sed -i "" 's|sha256 .*$|sha256 #{newSha}|' #{path}`
end
### TASKS ###
desc "Removes the build folder"
task :clean do
print "> Cleaning build/ folder"
`rm -rf build`
end
desc "Executes all the validation steps for CI"
task :ci => [:clean] do
print "> Linting project"
sh "swiftlint"
print "> Building the project"
sh "swift build"
print "> Executing tests"
sh "swift test"
end
desc "Bumps the version of xctools. It creates a new tagged commit and archives the binary to be published with the release"
task :release => [:clean] do
abort '> Commit all your changes before starting the release' unless !any_git_changes?
build
print "> xctools built"
generate_docs
print "> Documentation generated"
version = next_version
bump_to_version(current_version, next_version)
print "> Commit created and tagged with version: #{version}"
end
desc "Updates the Homebrew Formula to the values of the latest release. Creates a commit and pushes to the repository"
task :update_formula do
version = current_version
update_formula(version)
print "> Updated formula to version: #{version}"
`rm xctools.tar.gz`
`git add Formula/xcode.rb`
`git commit -m "Update Formula to #{version}" release`
`git push origin`
print "> Commit created and pushed to repository"
end
task :docs do
generate_docs
end