diff --git a/.buildkite/android.yml b/.buildkite/android.yml --- a/.buildkite/android.yml +++ b/.buildkite/android.yml @@ -1,5 +1,6 @@ steps: - - command: + - label: ":robot_face: Android Build" + command: - 'yarn cleaninstall --frozen-lockfile --skip-optional' - 'cd native/android' - './gradlew bundleRelease --no-daemon "-Dorg.gradle.jvmargs=-Xmx32g -XX:MaxPermSize=32g -XX:+HeapDumpOnOutOfMemoryError"' diff --git a/.buildkite/backup_build.yml b/.buildkite/backup_build.yml --- a/.buildkite/backup_build.yml +++ b/.buildkite/backup_build.yml @@ -1,4 +1,5 @@ steps: - - command: 'cd services && docker-compose build --no-cache backup-server' + - label: ":docker: Backup Build (Docker)" + command: 'cd services && docker-compose build --no-cache backup-server' agents: - 'autoscaling=true' diff --git a/.buildkite/blob_build.yml b/.buildkite/blob_build.yml --- a/.buildkite/blob_build.yml +++ b/.buildkite/blob_build.yml @@ -1,4 +1,5 @@ steps: - - command: 'cd services && docker-compose build --no-cache blob-server' + - label: ":docker: Blob Build (Docker)" + command: 'cd services && docker-compose build --no-cache blob-server' agents: - 'autoscaling=true' diff --git a/.buildkite/docker_keyserver.yml b/.buildkite/docker_keyserver.yml --- a/.buildkite/docker_keyserver.yml +++ b/.buildkite/docker_keyserver.yml @@ -1,5 +1,5 @@ steps: - - command: - - 'cd keyserver && touch .env && bash/dc.sh build --no-cache' + - label: ":docker: Keyserver Build (Docker)" + command: 'cd keyserver && touch .env && bash/dc.sh build --no-cache' agents: - 'autoscaling=true' diff --git a/.buildkite/eslint_flow_jest.yml b/.buildkite/eslint_flow_jest.yml --- a/.buildkite/eslint_flow_jest.yml +++ b/.buildkite/eslint_flow_jest.yml @@ -1,5 +1,6 @@ steps: - - command: + - label: ":eslint: :jest: ESLint & Flow & Jest" + command: - '(pkill flow || true)' - 'yarn cleaninstall --frozen-lockfile --skip-optional' - 'yarn eslint --max-warnings=0 & yarn workspace lib flow & yarn workspace web flow & yarn workspace landing flow & yarn workspace native flow & yarn workspace keyserver flow' diff --git a/.buildkite/identity_build.yml b/.buildkite/identity_build.yml --- a/.buildkite/identity_build.yml +++ b/.buildkite/identity_build.yml @@ -1,4 +1,5 @@ steps: - - command: 'cd services && docker-compose build --no-cache identity-server' + - label: ":docker: Identity Build (Docker)" + command: 'cd services && docker-compose build --no-cache identity-server' agents: - 'autoscaling=true' diff --git a/.buildkite/ios.yml b/.buildkite/ios.yml --- a/.buildkite/ios.yml +++ b/.buildkite/ios.yml @@ -1,5 +1,6 @@ steps: - - command: + - label: ":ios: iOS Build" + command: - 'pod repo update && yarn workspace native clean-ios' - 'yarn cleaninstall --frozen-lockfile --skip-optional' - 'cd native/ios && xcodebuild -workspace Comm.xcworkspace -scheme Comm -destination generic/platform=iOS -allowProvisioningUpdates' diff --git a/.buildkite/tunnelbroker_build.yml b/.buildkite/tunnelbroker_build.yml --- a/.buildkite/tunnelbroker_build.yml +++ b/.buildkite/tunnelbroker_build.yml @@ -1,4 +1,5 @@ steps: - - command: 'cd services && docker-compose build --no-cache tunnelbroker-server' + - label: ":docker: Tunnelbroker Build (Docker)" + command: 'cd services && docker-compose build --no-cache tunnelbroker-server' agents: - 'autoscaling=true'