Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix dangling references to chilly builds which have been removed. #57

Merged
merged 1 commit into from
Aug 9, 2024
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
4 changes: 2 additions & 2 deletions .github/workflows/build-floating.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
DEPLOYMENT_NAME: [ jwebbinar, roman, tike ]
USE_FROZEN: [ 0 ]
CAL_VERSION: [ none ]
FREEZE_CHILL: [ 1 ]
FREEZE: [ 1 ]
OWNER: [ quay.io/jupyter ]

permissions:
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Configure
shell: bash
run: |
scripts/image-configure ${{ matrix.DEPLOYMENT_NAME }} --use-frozen ${{ matrix.USE_FROZEN }} --freeze-chill ${{ matrix.FREEZE_CHILL }} --cal-version ${{ matrix.CAL_VERSION }} --owner ${{ MATRIX.owner }}
scripts/image-configure ${{ matrix.DEPLOYMENT_NAME }} --use-frozen ${{ matrix.USE_FROZEN }} --freeze ${{ matrix.FREEZE }} --cal-version ${{ matrix.CAL_VERSION }} --owner ${{ MATRIX.owner }}

- name: Early exit for unaffected builds
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-frozen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
DEPLOYMENT_NAME: [ tike, jwebbinar, roman ]
USE_FROZEN: [ frozen ]
FREEZE_CHILL: [ 1 ]
FREEZE: [ 1 ]
OWNER: [ quay.io/jupyter ]

steps:
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Set Up Environment
shell: bash
run: |
scripts/image-configure ${{ matrix.DEPLOYMENT_NAME }} --use-frozen ${{ matrix.USE_FROZEN }} --freeze-chill ${{ matrix.FREEZE_CHILL }} --owner ${{ matrix.OWNER }}
scripts/image-configure ${{ matrix.DEPLOYMENT_NAME }} --use-frozen ${{ matrix.USE_FROZEN }} --freeze ${{ matrix.FREEZE }} --owner ${{ matrix.OWNER }}
df -h

- name: Image Build
Expand Down
2 changes: 1 addition & 1 deletion scripts/image-base
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ frozen_hash_spec="$env_frozen_dir/docker-stacks.hash"
if [[ "$USE_FROZEN" == "1" ]]; then
git checkout `cat $frozen_hash_spec`
else
if [[ "$FREEZE_CHILL" == "1" ]]; then
if [[ "$FREEZE" == "1" ]]; then
echo `git rev-parse HEAD` > $frozen_hash_spec
fi
fi
Expand Down
Loading