File tree 3 files changed +8
-4
lines changed
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -3257,6 +3257,8 @@ steps:
3257
3257
name : test_dataproc-37
3258
3258
image :
3259
3259
valueFrom : ci_utils_image.image
3260
+ resources :
3261
+ preemptible : False
3260
3262
script : |
3261
3263
set -ex
3262
3264
@@ -3298,6 +3300,8 @@ steps:
3298
3300
name : test_dataproc-38
3299
3301
image :
3300
3302
valueFrom : ci_utils_image.image
3303
+ resources :
3304
+ preemptible : False
3301
3305
script : |
3302
3306
set -ex
3303
3307
@@ -3383,7 +3387,7 @@ steps:
3383
3387
HAIL_GENETICS_VEP_GRCH38_95_IMAGE=docker://{{ hailgenetics_vep_grch38_95_image.image }} \
3384
3388
AZURE_WHEEL=/io/azure-wheel/hail-*-py3-none-any.whl \
3385
3389
WEBSITE_TAR=/io/www.tar.gz \
3386
- ./ scripts/release.sh
3390
+ bash scripts/release.sh
3387
3391
3388
3392
echo '1' > /io/release-hail-flag
3389
3393
inputs :
Original file line number Diff line number Diff line change @@ -444,7 +444,7 @@ release: test-dataproc $(WHEEL)
444
444
HAIL_GENETICS_VEP_GRCH38_95_IMAGE=$(HAIL_GENETICS_VEP_GRCH38_95_IMAGE ) \
445
445
AZURE_WHEEL=$(AZURE_WHEEL ) \
446
446
WEBSITE_TAR=$(WEBSITE_TAR ) \
447
- ./ scripts/release.sh
447
+ bash scripts/release.sh
448
448
449
449
python/hail/docs/change_log.rst : python/hail/docs/change_log.md
450
450
sed -E " s/\(hail\#([0-9]+)\)/(\[#\1](https:\/\/github.com\/hail-is\/hail\/pull\/\1))/g" \
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
6
6
7
7
usage () {
8
8
cat << EOF
9
- usage: ./ $( basename " $0 " )
9
+ usage: $( basename " $0 " )
10
10
11
11
All arguments are specified by environment variables. For example:
12
12
@@ -24,7 +24,7 @@ usage: ./$(basename "$0")
24
24
HAIL_GENETICS_VEP_GRCH38_95_IMAGE=docker://us-docker.pkg.dev/hail-vdc/hail/hailgenetics/vep-grch38-95:deploy-123abc
25
25
AZURE_WHEEL=/path/to/wheel/for/azure
26
26
WEBSITE_TAR=/path/to/www.tar.gz
27
- ./ $( basename " $0 " )
27
+ bash $( basename " $0 " )
28
28
EOF
29
29
}
30
30
You can’t perform that action at this time.
0 commit comments