pr-ci-matrix.rb 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. #!/usr/bin/env ruby
  2. # A script to generate the .jenkins.yml file for the CI pull request job
  3. XCODE_VERSIONS = %w(13.4.1 14.1 14.2 14.3)
  4. all = ->(v) { true }
  5. latest_only = ->(v) { v == XCODE_VERSIONS.last }
  6. oldest_and_latest = ->(v) { v == XCODE_VERSIONS.first or v == XCODE_VERSIONS.last }
  7. def minimum_version(major)
  8. ->(v) { v.split('.').first.to_i >= major }
  9. end
  10. targets = {
  11. 'docs' => latest_only,
  12. 'swiftlint' => latest_only,
  13. 'osx' => all,
  14. 'osx-encryption' => latest_only,
  15. 'osx-object-server' => oldest_and_latest,
  16. 'swiftpm' => oldest_and_latest,
  17. 'swiftpm-debug' => all,
  18. 'swiftpm-address' => latest_only,
  19. 'swiftpm-thread' => latest_only,
  20. 'swiftpm-ios' => all,
  21. 'ios-static' => oldest_and_latest,
  22. 'ios-dynamic' => oldest_and_latest,
  23. 'watchos' => oldest_and_latest,
  24. 'tvos' => oldest_and_latest,
  25. 'osx-swift' => all,
  26. 'ios-swift' => oldest_and_latest,
  27. 'tvos-swift' => oldest_and_latest,
  28. 'osx-swift-evolution' => latest_only,
  29. 'ios-swift-evolution' => latest_only,
  30. 'tvos-swift-evolution' => latest_only,
  31. 'catalyst' => oldest_and_latest,
  32. 'catalyst-swift' => oldest_and_latest,
  33. 'xcframework' => latest_only,
  34. 'cocoapods-osx' => all,
  35. 'cocoapods-ios' => oldest_and_latest,
  36. 'cocoapods-ios-dynamic' => oldest_and_latest,
  37. 'cocoapods-watchos' => oldest_and_latest,
  38. # 'cocoapods-catalyst' => oldest_and_latest,
  39. 'swiftui-ios' => latest_only,
  40. 'swiftui-server-osx' => latest_only,
  41. }
  42. output_file = """
  43. # Yaml Axis Plugin
  44. # https://wiki.jenkins-ci.org/display/JENKINS/Yaml+Axis+Plugin
  45. # This is a generated file produced by scripts/pr-ci-matrix.rb.
  46. xcode_version:#{XCODE_VERSIONS.map { |v| "\n - #{v}" }.join()}
  47. target:#{targets.map { |k, v| "\n - #{k}" }.join()}
  48. configuration:
  49. - N/A
  50. exclude:
  51. """
  52. targets.each { |name, filter|
  53. XCODE_VERSIONS.each { |version|
  54. if not filter.call(version)
  55. output_file << """
  56. - xcode_version: #{version}
  57. target: #{name}
  58. """
  59. end
  60. }
  61. }
  62. File.open('.jenkins.yml', "w") do |file|
  63. file.puts output_file
  64. end