File tree Expand file tree Collapse file tree 3 files changed +39
-4
lines changed Expand file tree Collapse file tree 3 files changed +39
-4
lines changed Original file line number Diff line number Diff line change 15
15
key : " build-ubuntu-x86"
16
16
if : build.env("BUILDKITE_PULL_REQUEST") != "false" || build.source == "ui" || build.branch == "main" || build.branch =~ /^[0-9]+\.[0-9]+$$/
17
17
command :
18
- - " .buildkite/scripts/llvm-fpm /build.sh ${MAKEFILE} ${CHANGESET_FILE} ${DOCKER_FILTER_REF}"
19
- - " .buildkite/scripts/llvm-fpm /publish.sh ${MAKEFILE} ${CHANGESET_FILE}"
18
+ - " .buildkite/scripts/llvm-apple /build.sh ${MAKEFILE} ${CHANGESET_FILE} ${DOCKER_FILTER_REF}"
19
+ - " .buildkite/scripts/llvm-apple /publish.sh ${MAKEFILE} ${CHANGESET_FILE}"
20
20
notify :
21
21
- github_commit_status :
22
22
context : " Build LLVM Apple / Ubuntu X86_64"
38
38
key : " build-ubuntu-arm"
39
39
if : build.env("BUILDKITE_PULL_REQUEST") != "false" || build.source == "ui" || build.branch == "main" || build.branch =~ /^[0-9]+\.[0-9]+$$/
40
40
command :
41
- - " .buildkite/scripts/llvm-fpm /build.sh ${MAKEFILE} ${CHANGESET_FILE} ${DOCKER_FILTER_REF}"
42
- - " .buildkite/scripts/llvm-fpm /publish.sh ${MAKEFILE} ${CHANGESET_FILE}"
41
+ - " .buildkite/scripts/llvm-apple /build.sh ${MAKEFILE} ${CHANGESET_FILE} ${DOCKER_FILTER_REF}"
42
+ - " .buildkite/scripts/llvm-apple /publish.sh ${MAKEFILE} ${CHANGESET_FILE}"
43
43
notify :
44
44
- github_commit_status :
45
45
context : " Build LLVM Apple / Ubuntu ARM"
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ set -euo pipefail
4
+
5
+ source .buildkite/scripts/common.sh
6
+
7
+ makefile=${1}
8
+ patterns=${2}
9
+ docker_filter_ref=${3}
10
+
11
+ if ! are_files_changed " $patterns " ; then
12
+ exit 0
13
+ fi
14
+
15
+ add_bin_path
16
+ with_go " ${GOLANG_VERSION} "
17
+ with_mage
18
+
19
+ retry 3 make -C " ${makefile} " build GS_BUCKET_PATH=ingest-buildkite-ci
20
+ docker images --format " table {{.Repository}}:{{.Tag}}\t{{.Size}}" --filter=reference=" ${docker_filter_ref} "
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ set -euo pipefail
4
+
5
+ source .buildkite/scripts/common.sh
6
+
7
+ makefile=${1}
8
+ patterns=${2}
9
+
10
+ if ! are_files_changed " $patterns " ; then
11
+ exit 0
12
+ fi
13
+
14
+ add_bin_path
15
+ retry 3 make -C ${makefile} push
You can’t perform that action at this time.
0 commit comments