fixing library warning in setup step
parent
b6c4241a64
commit
e60db44f8e
|
|
@ -78,7 +78,7 @@ jobs:
|
||||||
AWS_DEFAULT_REGION: eu-west-2
|
AWS_DEFAULT_REGION: eu-west-2
|
||||||
DEBUG: true
|
DEBUG: true
|
||||||
GCP_LOG_FILE: ${{ github.workspace }}/cloud-runner-logs
|
GCP_LOG_FILE: ${{ github.workspace }}/cloud-runner-logs
|
||||||
INIT_HOOK: touch $GCP_LOG_FILE && tail -f $GCP_LOG_FILE | awk -F'\n' '{print $1}' | xargs -I{} gcloud logging write game-ci "{}"
|
INIT_HOOK: touch $GCP_LOG_FILE && tail -f $GCP_LOG_FILE | xargs -n1 -I{} gcloud logging write game-ci "{}"
|
||||||
with:
|
with:
|
||||||
cloudRunnerCluster: aws
|
cloudRunnerCluster: aws
|
||||||
versioning: None
|
versioning: None
|
||||||
|
|
|
||||||
|
|
@ -99,7 +99,7 @@ jobs:
|
||||||
CloudRunnerBranch: remote-builder/unified-providers
|
CloudRunnerBranch: remote-builder/unified-providers
|
||||||
DEBUG: true
|
DEBUG: true
|
||||||
GCP_LOG_FILE: ${{ github.workspace }}/cloud-runner-logs
|
GCP_LOG_FILE: ${{ github.workspace }}/cloud-runner-logs
|
||||||
INIT_HOOK: touch $GCP_LOG_FILE && tail -f $GCP_LOG_FILE | awk -F'\n' '{print $1}' | xargs -I{} gcloud logging write game-ci "{}"
|
INIT_HOOK: touch $GCP_LOG_FILE && tail -f $GCP_LOG_FILE | xargs -n1 -I{} gcloud logging write game-ci "{}"
|
||||||
with:
|
with:
|
||||||
cloudRunnerCluster: k8s
|
cloudRunnerCluster: k8s
|
||||||
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
|
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue