Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ci/ci.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/bin/sh

set -eux

export LC_ALL=C

set -eux

# Print commit and relevant CI environment to allow reproducing the job outside of CI.
git show --no-patch
print_environment() {
Expand Down
4 changes: 3 additions & 1 deletion ci/test/07_script.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/usr/bin/env bash

export LC_ALL=C

echo "UPLOAD ARTIFACTS"

if [[ "$ARTIFACT_NAME" == "" ]]; then
Expand Down Expand Up @@ -27,4 +29,4 @@ curl -X POST \
--data-binary @$fpath \
--header "Authorization: token $GITHUB_TOKEN" \
--header "Content-Type: $file_content_type" \
$url_to_upload
$url_to_upload
2 changes: 2 additions & 0 deletions contrib/devtools/split-debug.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/bin/sh
export LC_ALL=C

set -e
if [ $# -ne 3 ];
then echo "usage: $0 <input> <stripped-binary> <debug-binary>"
Expand Down
2 changes: 2 additions & 0 deletions contrib/travis.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/sh

export LC_ALL=C

set -e
set -x

Expand Down
2 changes: 2 additions & 0 deletions debian.minimal/build-in-docker.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

export LC_ALL=C

set -e

debuild -S
Expand Down
2 changes: 2 additions & 0 deletions debian.minimal/test.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

export LC_ALL=C

#finish() {
# docker stop $container >/dev/null
# docker container rm $container >/dev/null
Expand Down
2 changes: 2 additions & 0 deletions debian.qt/build-in-docker.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

export LC_ALL=C

set -e

debuild -S
Expand Down
2 changes: 2 additions & 0 deletions debian.qt/test.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

export LC_ALL=C

finish() {
docker stop $container >/dev/null
docker container rm $container >/dev/null
Expand Down
2 changes: 2 additions & 0 deletions debian.qt/updateunattended.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/bin/bash
export LC_ALL=C

export DEBIAN_FRONTEND=noninteractive
export TZ=Etc/UTC
apt-get update && apt-get install -y tzdata
Expand Down