-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* main: (103 commits) Removing some noise debug BCC typos Bump actions/checkout from 3 to 4 (#450) Bump orjson from 3.9.7 to 3.9.9 (#506) Bump fastapi from 0.103.2 to 0.104.0 (#511) Added BCC functionality for email sending (#510) Refactors the system checkers (#507) Bump psutil from 5.9.5 to 5.9.6 (#508) FIXME disabled in Pylint Added simple HTML5 validation to request.html Network key is optional for HOG Clarified error message and clarified actual exception caught extends the install script to have a random password option (#504) Jobs.py now sends email when old jobs are present; Bugfixes in SQL query Flow process runtime bumped to 60+ minutes Sorting must be additionaly done by table to show indicator Repositories generated table also shall show sorting indicators Removing legacy datatable includes for energy-timeline Removed 'sortable' class where we are using datatables and not jQuery-Sort Bugifx: If Jobs object is not set do not access ...
- Loading branch information
Showing
188 changed files
with
5,360 additions
and
2,461 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
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,36 @@ | ||
name: Build and Push Containers | ||
on: | ||
pull_request: | ||
types: | ||
- closed | ||
paths: | ||
- 'docker/auxiliary-containers/**/Dockerfile' | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
build-and-push-containers: | ||
if: github.event.pull_request.merged == true | ||
runs-on: ubuntu-latest | ||
permissions: | ||
packages: write | ||
contents: read | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
## This is needed for multi-architecture builds | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Login to Docker Registry | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Build and Push Containers | ||
run: bash ./docker/auxiliary-containers/build-containers.sh |
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
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
Oops, something went wrong.