Skip to content
Snippets Groups Projects
Commit afbe1225 authored by Albin Stjerna's avatar Albin Stjerna
Browse files

Apparently, that was a bashism

parent 666a799b
No related branches found
No related tags found
No related merge requests found
......@@ -17,8 +17,8 @@ test_2:
stage: test
before_script:
# Authenticate using the keytab:
- apk update && apk add make krb5
- base64 --decode <(echo "$KRB_KEYTAB_CONTENTS") > $KRB_USERNAME.keytab
- apk update && apk add make krb5 bash
- bash -c "base64 --decode <(echo \"$KRB_KEYTAB_CONTENTS\") > $KRB_USERNAME.keytab"
- kinit $KRB_USERNAME@CERN.CH -k -t $KRB_USERNAME.keytab
script:
- pip install -r requirements.txt
......@@ -31,9 +31,9 @@ test_3:
stage: test
image: frolvlad/alpine-python3
before_script:
- apk update && apk add make krb5
- apk update && apk add make krb5 bash
# Authenticate using the keytab:
- base64 --decode <(echo "$KRB_KEYTAB_CONTENTS") > $KRB_USERNAME.keytab
- bash -c "base64 --decode <(echo \"$KRB_KEYTAB_CONTENTS\") > $KRB_USERNAME.keytab"
- kinit $KRB_USERNAME@CERN.CH -k -t $KRB_USERNAME.keytab
script:
- pip install -r requirements.txt
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment