-
Notifications
You must be signed in to change notification settings - Fork 4
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 #278 from helxplatform/develop
Develop to master - GPU, ephemeral storage
- Loading branch information
Showing
12 changed files
with
78 additions
and
36 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 |
---|---|---|
|
@@ -44,25 +44,25 @@ jobs: | |
run: echo ${{ steps.vars.outputs.short_sha }} | ||
|
||
# https://github.com/marketplace/actions/git-semantic-version | ||
- name: Semver Check | ||
uses: paulhatch/[email protected] | ||
id: version | ||
with: | ||
# The prefix to use to identify tags | ||
tag_prefix: "v" | ||
# A string which, if present in a git commit, indicates that a change represents a | ||
# major (breaking) change, supports regular expressions wrapped with '/' | ||
major_pattern: "/(breaking)|(major)/" | ||
# A string which indicates the flags used by the `major_pattern` regular expression. Supported flags: idgs | ||
major_regexp_flags: "ig" | ||
# Same as above except indicating a minor change, supports regular expressions wrapped with '/' | ||
minor_pattern: "/(feat)|(feature)|(minor)/" | ||
# A string which indicates the flags used by the `minor_pattern` regular expression. Supported flags: idgs | ||
minor_regexp_flags: "ig" | ||
# A string to determine the format of the version output | ||
# version_format: "${major}.${minor}.${patch}-prerelease${increment}" | ||
version_format: "${major}.${minor}.${patch}-prerelease${increment}" | ||
search_commit_body: false | ||
# - name: Semver Check | ||
# uses: paulhatch/[email protected] | ||
# id: version | ||
# with: | ||
# # The prefix to use to identify tags | ||
# tag_prefix: "v" | ||
# # A string which, if present in a git commit, indicates that a change represents a | ||
# # major (breaking) change, supports regular expressions wrapped with '/' | ||
# major_pattern: "/(breaking)|(major)/" | ||
# # A string which indicates the flags used by the `major_pattern` regular expression. Supported flags: idgs | ||
# major_regexp_flags: "ig" | ||
# # Same as above except indicating a minor change, supports regular expressions wrapped with '/' | ||
# minor_pattern: "/(feat)|(feature)|(minor)/" | ||
# # A string which indicates the flags used by the `minor_pattern` regular expression. Supported flags: idgs | ||
# minor_regexp_flags: "ig" | ||
# # A string to determine the format of the version output | ||
# # version_format: "${major}.${minor}.${patch}-prerelease${increment}" | ||
# version_format: "${major}.${minor}.${patch}-prerelease${increment}" | ||
# search_commit_body: false | ||
|
||
# Docker Buildx is important to caching in the Build And Push Container | ||
# step | ||
|
@@ -97,10 +97,8 @@ jobs: | |
# Push to renci-registry and dockerhub here. | ||
# cache comes from dockerhub. | ||
tags: | | ||
${{ github.repository }}:v${{ steps.version.outputs.version }} | ||
${{ github.repository }}:develop | ||
${{ github.repository }}:${{ steps.vars.outputs.short_sha }} | ||
containers.renci.org/${{ github.repository }}:v${{ steps.version.outputs.version }} | ||
containers.renci.org/${{ github.repository }}:develop | ||
containers.renci.org/${{ github.repository }}:${{ steps.vars.outputs.short_sha }} | ||
cache-from: type=registry,ref=${{ github.repository }}:buildcache-dev | ||
|
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,7 +1,8 @@ | ||
from django.urls import path | ||
from .views import auth,index | ||
from django.urls import path, re_path | ||
from .views import auth, index, HandlePrivateURL404s | ||
|
||
urlpatterns = [ | ||
path('default/', index, name='index'), | ||
path("auth/", auth, name="auth"), | ||
re_path(r"^private/*", HandlePrivateURL404s, name="private"), | ||
] |
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
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