1--- 2tasks: 3 ubuntu1804_latest: 4 name: "Latest Bazel" 5 platform: ubuntu1804 6 bazel: latest 7 build_targets: 8 - "//..." 9 test_targets: 10 - "//..." 11 test_flags: 12 - "--test_env=PATH" 13 14 ubuntu1604_latest: 15 name: "Latest Bazel" 16 platform: ubuntu1604 17 bazel: latest 18 build_targets: 19 - "//..." 20 test_targets: 21 - "//..." 22 test_flags: 23 - "--test_env=PATH" 24 25 macos_latest: 26 name: "Latest Bazel" 27 platform: macos 28 bazel: latest 29 build_targets: 30 - "//..." 31 test_targets: 32 - "//..." 33 test_flags: 34 - "--test_env=PATH" 35 36 windows_latest: 37 name: "Latest Bazel" 38 platform: windows 39 bazel: latest 40 build_targets: 41 - "//..." 42 test_targets: 43 - "--" 44 - "//..." 45 test_flags: 46 # TODO(laszlocsomor): remove "--test_env=LOCALAPPDATA" after 47 # https://github.com/bazelbuild/bazel/issues/7761 is fixed 48 - "--test_env=LOCALAPPDATA" 49 50 ubuntu1804_last_green: 51 name: "Last Green Bazel" 52 platform: ubuntu1804 53 bazel: last_green 54 build_targets: 55 - "//..." 56 test_targets: 57 - "//..." 58 test_flags: 59 - "--test_env=PATH" 60 61 ubuntu1604_last_green: 62 name: "Last Green Bazel" 63 platform: ubuntu1604 64 bazel: last_green 65 build_targets: 66 - "//..." 67 test_targets: 68 - "//..." 69 test_flags: 70 - "--test_env=PATH" 71 72 macos_last_green: 73 name: "Last Green Bazel" 74 platform: macos 75 bazel: last_green 76 build_targets: 77 - "//..." 78 test_targets: 79 - "//..." 80 test_flags: 81 - "--test_env=PATH" 82 83 windows_last_green: 84 name: "Last Green Bazel" 85 platform: windows 86 bazel: last_green 87 build_targets: 88 - "//..." 89 test_targets: 90 - "--" 91 - "//..." 92 test_flags: 93 # TODO(laszlocsomor): remove "--test_env=LOCALAPPDATA" after 94 # https://github.com/bazelbuild/bazel/issues/7761 is fixed 95 - "--test_env=LOCALAPPDATA" 96 97buildifier: latest 98