9 lines
243 B
Bash
9 lines
243 B
Bash
|
#!/bin/bash -e
|
||
|
#
|
||
|
# The standard BUILDKITE_PULL_REQUEST environment variable is always "false" due
|
||
|
# to how solana-ci-gate is used to trigger PR builds rather than using the
|
||
|
# standard Buildkite PR trigger.
|
||
|
#
|
||
|
|
||
|
[[ $BUILDKITE_BRANCH =~ pull/* ]]
|