|
9 | 9 | BUILDX: 1
|
10 | 10 |
|
11 | 11 | steps:
|
12 |
| - - group: "Staging" |
13 |
| - key: "staging" |
14 |
| - |
15 |
| - steps: |
16 |
| - - label: ":linux: Staging / Ubuntu X86_64 - {{matrix.makefile}}" |
17 |
| - key: "build-ubuntu-x86" |
18 |
| - command: |
19 |
| - - ".buildkite/scripts/build.sh {{matrix.makefile}}" |
20 |
| - - ".buildkite/scripts/publish.sh {{matrix.makefile}}" |
21 |
| - env: |
22 |
| - REPOSITORY: "${STAGING_IMAGE}" |
23 |
| - if: build.env("BUILDKITE_PULL_REQUEST") != "false" |
24 |
| - notify: |
25 |
| - - github_commit_status: |
26 |
| - context: "Staging / Ubuntu X86_64" |
27 |
| - agents: |
28 |
| - provider: "gcp" |
29 |
| - image: "${IMAGE_UBUNTU_X86_64}" |
30 |
| - matrix: |
31 |
| - setup: |
32 |
| - makefile: |
33 |
| - - "Makefile" |
34 |
| - - "Makefile.debian7" |
35 |
| - - "Makefile.debian8" |
36 |
| - - "Makefile.debian9" |
37 |
| - - "Makefile.debian10" |
38 |
| - - "Makefile.debian11" |
39 |
| - - "Makefile.debian12" |
40 |
| - |
41 |
| - - label: ":linux: Staging / Ubuntu ARM - Makefile.debian9" |
42 |
| - key: "build-ubuntu-arm" |
43 |
| - command: |
44 |
| - - ".buildkite/scripts/build.sh Makefile.debian9" |
45 |
| - - ".buildkite/scripts/publish.sh Makefile.debian9" |
46 |
| - env: |
47 |
| - REPOSITORY: "${STAGING_IMAGE}" |
48 |
| - if: build.env("BUILDKITE_PULL_REQUEST") != "false" |
49 |
| - notify: |
50 |
| - - github_commit_status: |
51 |
| - context: "Staging / Ubuntu ARM" |
52 |
| - agents: |
53 |
| - provider: "aws" |
54 |
| - imagePrefix: "${IMAGE_UBUNTU_ARM_64}" |
55 |
| - instanceType: "t4g.large" |
| 12 | +# - group: "Staging" |
| 13 | +# key: "staging" |
| 14 | +# |
| 15 | +# steps: |
| 16 | +# - label: ":linux: Staging / Ubuntu X86_64 - {{matrix.makefile}}" |
| 17 | +# key: "build-ubuntu-x86" |
| 18 | +# command: |
| 19 | +# - ".buildkite/scripts/build.sh {{matrix.makefile}}" |
| 20 | +# - ".buildkite/scripts/publish.sh {{matrix.makefile}}" |
| 21 | +# env: |
| 22 | +# REPOSITORY: "${STAGING_IMAGE}" |
| 23 | +# if: build.env("BUILDKITE_PULL_REQUEST") != "false" |
| 24 | +# notify: |
| 25 | +# - github_commit_status: |
| 26 | +# context: "Staging / Ubuntu X86_64" |
| 27 | +# agents: |
| 28 | +# provider: "gcp" |
| 29 | +# image: "${IMAGE_UBUNTU_X86_64}" |
| 30 | +# matrix: |
| 31 | +# setup: |
| 32 | +# makefile: |
| 33 | +# - "Makefile" |
| 34 | +# - "Makefile.debian7" |
| 35 | +# - "Makefile.debian8" |
| 36 | +# - "Makefile.debian9" |
| 37 | +# - "Makefile.debian10" |
| 38 | +# - "Makefile.debian11" |
| 39 | +# - "Makefile.debian12" |
| 40 | +# |
| 41 | +# - label: ":linux: Staging / Ubuntu ARM - Makefile.debian9" |
| 42 | +# key: "build-ubuntu-arm" |
| 43 | +# command: |
| 44 | +# - ".buildkite/scripts/build.sh Makefile.debian9" |
| 45 | +# - ".buildkite/scripts/publish.sh Makefile.debian9" |
| 46 | +# env: |
| 47 | +# REPOSITORY: "${STAGING_IMAGE}" |
| 48 | +# if: build.env("BUILDKITE_PULL_REQUEST") != "false" |
| 49 | +# notify: |
| 50 | +# - github_commit_status: |
| 51 | +# context: "Staging / Ubuntu ARM" |
| 52 | +# agents: |
| 53 | +# provider: "aws" |
| 54 | +# imagePrefix: "${IMAGE_UBUNTU_ARM_64}" |
| 55 | +# instanceType: "t4g.large" |
56 | 56 |
|
57 | 57 | - group: "Release"
|
58 | 58 | key: "release"
|
59 | 59 |
|
60 | 60 | steps:
|
61 |
| - - label: ":linux: Release / Ubuntu X86_64 - {{matrix.makefile}}" |
62 |
| - key: "release-ubuntu-x86" |
63 |
| - command: |
64 |
| - - ".buildkite/scripts/build.sh {{matrix.makefile}}" |
65 |
| - - ".buildkite/scripts/publish.sh {{matrix.makefile}}" |
66 |
| - if: build.branch == "main" || build.branch =~ /^[0-9]+\.[0-9]+$$/ |
67 |
| - agents: |
68 |
| - provider: "gcp" |
69 |
| - image: "${IMAGE_UBUNTU_X86_64}" |
70 |
| - matrix: |
71 |
| - setup: |
72 |
| - makefile: |
73 |
| - - "Makefile" |
74 |
| - - "Makefile.debian7" |
75 |
| - - "Makefile.debian8" |
76 |
| - - "Makefile.debian9" |
77 |
| - - "Makefile.debian10" |
78 |
| - - "Makefile.debian11" |
79 |
| - - "Makefile.debian12" |
80 |
| - notify: |
81 |
| - - github_commit_status: |
82 |
| - context: "Release / Ubuntu X86_64" |
| 61 | +# - label: ":linux: Release / Ubuntu X86_64 - {{matrix.makefile}}" |
| 62 | +# key: "release-ubuntu-x86" |
| 63 | +# command: |
| 64 | +# - ".buildkite/scripts/build.sh {{matrix.makefile}}" |
| 65 | +# - ".buildkite/scripts/publish.sh {{matrix.makefile}}" |
| 66 | +# if: build.branch == "main" || build.branch =~ /^[0-9]+\.[0-9]+$$/ |
| 67 | +# agents: |
| 68 | +# provider: "gcp" |
| 69 | +# image: "${IMAGE_UBUNTU_X86_64}" |
| 70 | +# matrix: |
| 71 | +# setup: |
| 72 | +# makefile: |
| 73 | +# - "Makefile" |
| 74 | +# - "Makefile.debian7" |
| 75 | +# - "Makefile.debian8" |
| 76 | +# - "Makefile.debian9" |
| 77 | +# - "Makefile.debian10" |
| 78 | +# - "Makefile.debian11" |
| 79 | +# - "Makefile.debian12" |
| 80 | +# notify: |
| 81 | +# - github_commit_status: |
| 82 | +# context: "Release / Ubuntu X86_64" |
83 | 83 |
|
84 |
| - - label: ":linux: Release / Ubuntu ARM - Makefile.debian9" |
85 |
| - key: "release-ubuntu-arm" |
86 |
| - command: |
87 |
| - - ".buildkite/scripts/build.sh Makefile.debian9" |
88 |
| - - ".buildkite/scripts/publish.sh Makefile.debian9" |
89 |
| - if: build.branch == "main" || build.branch =~ /^[0-9]+\.[0-9]+$$/ |
90 |
| - agents: |
91 |
| - provider: "aws" |
92 |
| - imagePrefix: "${IMAGE_UBUNTU_ARM_64}" |
93 |
| - instanceType: "t4g.large" |
94 |
| - notify: |
95 |
| - - github_commit_status: |
96 |
| - context: "Release / Ubuntu ARM" |
| 84 | +# - label: ":linux: Release / Ubuntu ARM - Makefile.debian9" |
| 85 | +# key: "release-ubuntu-arm" |
| 86 | +# command: |
| 87 | +# - ".buildkite/scripts/build.sh Makefile.debian9" |
| 88 | +# - ".buildkite/scripts/publish.sh Makefile.debian9" |
| 89 | +# if: build.branch == "main" || build.branch =~ /^[0-9]+\.[0-9]+$$/ |
| 90 | +# agents: |
| 91 | +# provider: "aws" |
| 92 | +# imagePrefix: "${IMAGE_UBUNTU_ARM_64}" |
| 93 | +# instanceType: "t4g.large" |
| 94 | +# notify: |
| 95 | +# - github_commit_status: |
| 96 | +# context: "Release / Ubuntu ARM" |
97 | 97 |
|
98 | 98 | - label: "Post-Release"
|
99 | 99 | key: "release-post"
|
100 | 100 | command: ".buildkite/scripts/post-release.sh ${GOLANG_VERSION}"
|
101 |
| - if: build.branch == "main" || build.branch =~ /^[0-9]+\.[0-9]+$$/ |
102 |
| - depends_on: |
103 |
| - - "release-ubuntu-x86" |
104 |
| - - "release-ubuntu-arm" |
| 101 | +# if: build.branch == "main" || build.branch =~ /^[0-9]+\.[0-9]+$$/ |
| 102 | +# depends_on: |
| 103 | +# - "release-ubuntu-x86" |
| 104 | +# - "release-ubuntu-arm" |
105 | 105 | notify:
|
106 | 106 | - github_commit_status:
|
107 | 107 | context: "Post-release"
|
|
0 commit comments