Skip to content

Commit 4d9b04a

Browse files
committed
ci: fix outputs generation for pre v1.0
1 parent 0144c34 commit 4d9b04a

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ jobs:
5050
needs: changes
5151
uses: ./.github/workflows/container.yml
5252

53-
# outputs:
54-
# if: |
55-
# !cancelled()
56-
# && contains(needs.*.result, 'success')
57-
# && !contains(needs.*.result, 'failure')
58-
# && (needs.changes.outputs.outputs == 'true'
59-
# || startsWith(github.ref, 'refs/tags/'))
60-
# needs: [ changes, container ]
61-
# uses: ./.github/workflows/outputs.yml
53+
outputs:
54+
if: |
55+
!cancelled()
56+
&& contains(needs.*.result, 'success')
57+
&& !contains(needs.*.result, 'failure')
58+
&& (needs.changes.outputs.outputs == 'true'
59+
|| startsWith(github.ref, 'refs/tags/'))
60+
needs: [ changes, container ]
61+
uses: ./.github/workflows/outputs.yml
6262

6363
style:
6464
if: ${{ needs.changes.outputs.style == 'true' }}

container/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ RUN apt-get remove -y gcc-12
1717

1818
# Download the buildcache
1919
RUN mkdir /mirror
20-
RUN aws --region us-east-1 --no-sign-request s3 sync --only-show-errors s3://spack-binaries/releases/v0.23/tutorial /mirror
20+
RUN aws --region us-east-1 --no-sign-request s3 sync --only-show-errors s3://spack-binaries/develop-2025-07-13/tutorial /mirror
2121

2222
RUN chmod -R go+r /mirror
2323

outputs/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ sections := environments
2525
run_targets := $(addprefix run-,$(sections))
2626

2727
# Entrypoint
28-
update-outputs: #run
28+
update-outputs: run
2929
echo "Filtering raw outputs though col"
3030
for raw in raw/*/*.out; do \
3131
out=$$(echo $$raw | sed 's.raw/..'); \

outputs/defs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ fi
1414
raw_outputs="${PROJECT}/raw"
1515

1616
# used by scripts
17-
tutorial_branch=releases/v0.23
17+
tutorial_branch=develop
1818

1919
print_status() {
2020
printf "\n%b: %s\n\n" "\033[1;35m$1\033[0m" "$2"

0 commit comments

Comments
 (0)