Skip to content
Merged
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
6 changes: 5 additions & 1 deletion .github/workflows/annotate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
types:
- completed

defaults:
run:
shell: bash --noprofile --norc -euo pipefail {0}

jobs:
annotate:
if: github.repository_owner == 'trinodb'
Expand Down Expand Up @@ -35,7 +39,7 @@ jobs:
fs.writeFileSync('${{github.workspace}}/' + artifact.name + '.zip', Buffer.from(download.data));
}
- run: |
set -xeuo pipefail
set -x
pwd
ls
for archive in *.zip; do
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
paths-ignore:
- 'docs/**'

defaults:
run:
shell: bash --noprofile --norc -euo pipefail {0}

env:
# An envar that signals to tests we are executing in the CI environment
CONTINUOUS_INTEGRATION: true
Expand Down Expand Up @@ -747,7 +751,7 @@ jobs:
testing/bin/ptl suite run \
--suite ${{ matrix.suite }} \
--config config-${{ matrix.config }} \
$PTL_OPTS \
${PTL_OPTS:-} \
--bind=off --logs-dir logs/ --timeout 2h
- name: Upload test logs and results
uses: actions/upload-artifact@v2
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
paths:
- 'docs/**'

defaults:
run:
shell: bash --noprofile --norc -euo pipefail {0}

env:
# An envar that signals to tests we are executing in the CI environment
CONTINUOUS_INTEGRATION: true
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/milestone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
push:
branches: [master]

defaults:
run:
shell: bash --noprofile --norc -euo pipefail {0}

jobs:
set-milestone:
if: github.repository_owner == 'trinodb'
Expand Down