forked from jupyter/docker-stacks
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from helxplatform/merge-from-jupyter-docker-sta…
…cks-main-20241010 Merge from jupyter docker stacks main 20241010
- Loading branch information
Showing
212 changed files
with
4,338 additions
and
1,821 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[flake8] | ||
max-line-length = 88 | ||
select = C,E,F,W,B,B950 | ||
select = C, E, F, W, B, B950 | ||
extend-ignore = E203, E501, W503 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Build environment | ||
description: Create a build environment | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
# actions/setup-python doesn't support Linux aarch64 runners | ||
# See: https://github.com/actions/setup-python/issues/108 | ||
# python3 is manually preinstalled in the aarch64 VM self-hosted runner | ||
- name: Set Up Python 🐍 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
if: runner.arch == 'X64' | ||
|
||
- name: Install Dev Dependencies 📦 | ||
run: | | ||
pip install --upgrade pip | ||
pip install --upgrade -r requirements-dev.txt | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Load Docker image | ||
description: Download the image tar and load it to Docker | ||
|
||
inputs: | ||
image: | ||
description: Image name | ||
required: true | ||
platform: | ||
description: Image platform | ||
required: true | ||
variant: | ||
description: Variant tag prefix | ||
required: true | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Download built image 📥 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: ${{ inputs.image }}-${{ inputs.platform }}-${{ inputs.variant }} | ||
path: /tmp/jupyter/images/ | ||
- name: Load downloaded image to docker 📥 | ||
run: | | ||
zstd --uncompress --stdout --rm /tmp/jupyter/images/${{ inputs.image }}-${{ inputs.platform }}-${{ inputs.variant }}.tar.zst | docker load | ||
docker image ls --all | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,19 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates | ||
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: weekly | ||
- package-ecosystem: github-actions | ||
directory: .github/actions/create-dev-env/ | ||
schedule: | ||
interval: weekly | ||
- package-ecosystem: github-actions | ||
directory: .github/actions/load-image/ | ||
schedule: | ||
interval: weekly |
Oops, something went wrong.