Skip to content

Commit b459575

Browse files
committed
Python unbuffered
1 parent 334dd65 commit b459575

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.github/workflows/quality.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,6 @@ jobs:
2626
pip install sh unidecode pyaml
2727
2828
- name: Validate image repos
29+
env:
30+
PYTHONUNBUFFERED: "TRUE"
2931
run: ./bin/validate_repo.py

.github/workflows/release.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,13 @@ jobs:
2626
pip install sh unidecode pyaml
2727
2828
- name: Build Github Index
29+
env:
30+
PYTHONUNBUFFERED: "TRUE"
2931
run: ./build-github.sh
3032

3133
- name: Build Gitlab Index
34+
env:
35+
PYTHONUNBUFFERED: "TRUE"
3236
run: ./build-gitlab.sh
3337

3438
- run: echo "RELEASE_DATE=$(date -u +%Y-%m-%dT%H:%M:%SZ)" >> $GITHUB_ENV

bin/validate_repo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python3 -u
1+
#!/usr/bin/env python
22
#
33
# check that the repo branch and path are valid
44
#

0 commit comments

Comments
 (0)