-
Notifications
You must be signed in to change notification settings - Fork 1
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
php2650 #93
Merged
Merged
php2650 #93
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
6a87e52
Added new packages Spring 24
prasadbandarkar 5ddfbeb
Added tensorflow
prasadbandarkar 85b733e
using pip to install tensorflow
prasadbandarkar 3605f43
Removing caching
prasadbandarkar 97c1f4f
Upgrading python version
prasadbandarkar e092981
tensorflow-cpu
prasadbandarkar fe6f383
python=3.10 target=r_lang
prasadbandarkar 6c64cf2
Fixed typo
prasadbandarkar 17c0194
R=4.3 Python=3.11
prasadbandarkar 5fa581e
No version numbers for R packages
prasadbandarkar be54c43
change target
prasadbandarkar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -4,17 +4,17 @@ on: [workflow_dispatch] | |
env: | ||
CLASS: php2650 | ||
TARGET: r_julia | ||
SQLITE: true | ||
PYTHON_VERSION: 3.9 | ||
SQLITE: false | ||
PYTHON_VERSION: 3.11 | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set Up GCloud | ||
uses: google-github-actions/[email protected].0 | ||
uses: google-github-actions/[email protected].2 | ||
with: | ||
project_id: ${{ secrets.GCP_PROJECT_ID_JH_DOCKER }} | ||
service_account_key: ${{ secrets.GCP_SA_KEY_JH_DOCKER }} | ||
|
@@ -28,8 +28,8 @@ jobs: | |
- name: Upload Julia Env Files to Google Storage Bucket | ||
if: env.TARGET == 'r_julia' | ||
run: | | ||
gsutil cp -r requirements/classes/php2650/julia_env gs://jupyterhub-environment-files/spring-2023/php2650/past/${GITHUB_SHA}/julia | ||
gsutil cp -r requirements/classes/php2650/julia_env gs://jupyterhub-environment-files/spring-2023/php2650/latest/julia | ||
gsutil cp -r requirements/classes/php2650/julia_env gs://jupyterhub-environment-files/spring-2024/php2650/past/${GITHUB_SHA}/julia | ||
gsutil cp -r requirements/classes/php2650/julia_env gs://jupyterhub-environment-files/spring-2024/php2650/latest/julia | ||
|
||
- name: Configure Docker | ||
run: gcloud auth configure-docker | ||
|
@@ -40,13 +40,13 @@ jobs: | |
docker tag jupyterhub-docker-images_jh_image:latest gcr.io/jupyterhub-docker-images/php2650:${GITHUB_REF##*/} | ||
docker tag jupyterhub-docker-images_jh_image:latest gcr.io/jupyterhub-docker-images/php2650:${GITHUB_SHA} | ||
docker tag jupyterhub-docker-images_jh_image:latest gcr.io/jupyterhub-docker-images/php2650:latest | ||
docker tag jupyterhub-docker-images_jh_image:latest gcr.io/jupyterhub-docker-images/php2650:spring-2023 | ||
docker tag jupyterhub-docker-images_jh_image:latest gcr.io/jupyterhub-docker-images/php2650:spring-2024 | ||
docker push gcr.io/jupyterhub-docker-images/php2650:latest | ||
docker push gcr.io/jupyterhub-docker-images/php2650:spring-2023 | ||
docker push gcr.io/jupyterhub-docker-images/php2650:spring-2024 | ||
docker push gcr.io/jupyterhub-docker-images/php2650:${GITHUB_REF##*/} | ||
docker push gcr.io/jupyterhub-docker-images/php2650:${GITHUB_SHA} | ||
|
||
- name: Upload Conda Env Files to Google Storage Bucket | ||
run: | | ||
gsutil cp -r requirements/out gs://jupyterhub-environment-files/spring-2023/php2650/past/${GITHUB_SHA}/conda | ||
gsutil cp -r requirements/out gs://jupyterhub-environment-files/spring-2023/php2650/latest/conda | ||
gsutil cp -r requirements/out gs://jupyterhub-environment-files/spring-2024/php2650/past/${GITHUB_SHA}/conda | ||
gsutil cp -r requirements/out gs://jupyterhub-environment-files/spring-2024/php2650/latest/conda |
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 |
---|---|---|
|
@@ -11,17 +11,17 @@ on: | |
env: | ||
CLASS: php2650 | ||
TARGET: r_julia | ||
SQLITE: true | ||
PYTHON_VERSION: 3.9 | ||
SQLITE: false | ||
PYTHON_VERSION: 3.11 | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set Up GCloud | ||
uses: google-github-actions/[email protected].0 | ||
uses: google-github-actions/[email protected].2 | ||
with: | ||
project_id: ${{ secrets.GCP_PROJECT_ID_JH_DOCKER }} | ||
service_account_key: ${{ secrets.GCP_SA_KEY_JH_DOCKER }} | ||
|
@@ -34,9 +34,9 @@ jobs: | |
|
||
- name: Configure Docker | ||
run: gcloud auth configure-docker | ||
- uses: satackey/[email protected] | ||
# - uses: satackey/[email protected] | ||
# Ignore the failure of a step and avoid terminating the job. | ||
continue-on-error: true | ||
# continue-on-error: true | ||
- name: Build and Push JH Image | ||
run: | | ||
COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker-compose up jh_image | ||
|
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,2 +1 @@ | ||
# add class-specific classes here: | ||
|
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now that we are updating this, v4 is available now