-
Notifications
You must be signed in to change notification settings - Fork 51
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 #932 from Epistimio/release-v0.2.4rc2
Release candidate v0.2.4
- Loading branch information
Showing
231 changed files
with
34,314 additions
and
3,210 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: Dashboard Build PR | ||
|
||
on: | ||
push: | ||
branches: [ develop ] | ||
|
||
defaults: | ||
run: | ||
working-directory: dashboard/src | ||
|
||
jobs: | ||
build_dashboard: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 16 | ||
- name: Compile Dashboard | ||
run: | | ||
# NB: We are in directory dashboard/src | ||
yarn | ||
yarn build | ||
# If previous build folder exists and is same as new one, do not update. | ||
# In any other case, we must update. | ||
if ( [ -d "../build" ] && diff -qr build ../build ); then UPDATE_BUILD=0; else UPDATE_BUILD=1; fi | ||
echo "update_build=${UPDATE_BUILD}" >> $GITHUB_ENV | ||
echo Build changes ? ${UPDATE_BUILD} | ||
- name: Update compiled Dashboard | ||
if: ${{ env.update_build == '1' }} | ||
run: | | ||
rm -rf ../build | ||
mv build .. | ||
- name: Create Pull Request | ||
if: ${{ env.update_build == '1' }} | ||
id: cpr | ||
uses: peter-evans/create-pull-request@v3 | ||
with: | ||
commit-message: 'Compile Dashboard' | ||
branch: ci/build-dashboard | ||
base: develop | ||
delete-branch: true | ||
title: 'Compile Dashboard' | ||
body: | | ||
Auto-generated by [create-pull-request][1] | ||
[1]: https://github.com/peter-evans/create-pull-request | ||
labels: | | ||
automated pr | ||
- name: Check outputs | ||
if: ${{ env.update_build == '1' }} | ||
run: | | ||
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" | ||
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}" |
Binary file not shown.
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,9 @@ | ||
storage: | ||
database: | ||
host: '../../.github/workflows/orion/db_dashboard_full.pkl' | ||
type: 'pickleddb' | ||
|
||
gunicorn: | ||
bind: '127.0.0.1:8000' | ||
workers: 4 | ||
threads: 2 |
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,43 @@ | ||
--- | ||
repos: | ||
- repo: https://github.com/python/black | ||
rev: 22.3.0 | ||
hooks: | ||
- id: black | ||
- repo: https://github.com/codespell-project/codespell | ||
rev: v2.1.0 | ||
hooks: | ||
- id: codespell | ||
args: | ||
- --ignore-words-list=nd,reacher,thist,ths,hist | ||
- repo: https://gitlab.com/pycqa/flake8 | ||
rev: 3.9.2 | ||
hooks: | ||
- id: flake8 | ||
args: | ||
- --ignore=E203,E402,E712,E722,E731,E741,F401,F403,F405,F524,F841,W503,E302,E704 | ||
- --max-complexity=30 | ||
- --max-line-length=456 | ||
- --show-source | ||
- --statistics | ||
- repo: https://github.com/PyCQA/isort | ||
rev: 5.10.1 | ||
hooks: | ||
- id: isort | ||
args: ["--profile", "black"] | ||
- repo: https://github.com/asottile/pyupgrade | ||
rev: v2.31.0 | ||
hooks: | ||
- id: pyupgrade | ||
args: ["--py37-plus"] | ||
- repo: https://github.com/PyCQA/autoflake | ||
rev: v1.4 | ||
hooks: | ||
- id: autoflake | ||
args: ["--in-place", "--expand-star-imports", "--remove-all-unused-imports", "--ignore-init-module-imports"] | ||
|
||
- repo: https://github.com/PyCQA/doc8 | ||
rev: 0.8.1 | ||
hooks: | ||
- id: doc8 | ||
args: ["--max-line-length=100", "--file-encoding=utf-8"] |
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,32 @@ | ||
@software{xavier_bouthillier_2022_0_2_3, | ||
author = {Xavier Bouthillier and | ||
Christos Tsirigotis and | ||
François Corneau-Tremblay and | ||
Thomas Schweizer and | ||
Lin Dong and | ||
Pierre Delaunay and | ||
Fabrice Normandin and | ||
Mirko Bronzi and | ||
Dendi Suhubdy and | ||
Reyhane Askari and | ||
Michael Noukhovitch and | ||
Chao Xue and | ||
Satya Ortiz-Gagné and | ||
Olivier Breuleux and | ||
Arnaud Bergeron and | ||
Olexa Bilaniuk and | ||
Steven Bocco and | ||
Hadrien Bertrand and | ||
Guillaume Alain and | ||
Dmitriy Serdyuk and | ||
Peter Henderson and | ||
Pascal Lamblin and | ||
Christopher Beckham}, | ||
title = {{Epistimio/orion: Asynchronous Distributed Hyperparameter Optimization}}, | ||
month = mar, | ||
year = 2022, | ||
publisher = {Zenodo}, | ||
version = {v0.2.3}, | ||
doi = {10.5281/zenodo.3478592}, | ||
url = {https://doi.org/10.5281/zenodo.3478592} | ||
} |
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.