-
Notifications
You must be signed in to change notification settings - Fork 11
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 #6 from jennyfothergill/fix/interact
Fix/interact
- Loading branch information
Showing
13 changed files
with
197 additions
and
413 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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: build-ex | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
# Run when container or environment is changed | ||
paths: | ||
- 'containers/dockerfile-ex' | ||
- 'examples/environment-ex.yml' | ||
# Allows workflow to be manually triggered | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-ex: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v2 | ||
- | ||
name: Set up QEMU | ||
uses: docker/setup-qemu-action@v1 | ||
- | ||
name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
- | ||
name: Login to DockerHub | ||
uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- | ||
name: Build and push | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: ./containers/dockerfile | ||
pus: true | ||
tags: cmelab/gixstapose-ex:latest | ||
- | ||
name: Image digest | ||
run: echo ${{ steps.docker_build.outputs.digest }} |
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,7 +11,7 @@ on: | |
workflow_dispatch: | ||
|
||
jobs: | ||
build_gpu: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
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,13 @@ | ||
comment: | ||
layout: "reach, diff, flags, files" | ||
behavior: default | ||
require_changes: false # if true: only post the comment if coverage changes | ||
require_base: no # [yes :: must have a base report to post] | ||
require_head: yes # [yes :: must have a head report to post] | ||
branches: # branch names that can post comment | ||
- "master" | ||
ignore: | ||
- "gixstapose/tests" | ||
- "gixstapose/__version__.py" | ||
- "setup.py" | ||
|
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,8 @@ | ||
FROM cmelab/gpuconda:latest | ||
|
||
# Create the environment | ||
COPY examples/environment-ex.yml ./ | ||
|
||
# Install in base environment | ||
RUN conda env update -n base -f environment-ex.yml && \ | ||
conda clean --all --yes -f |
Large diffs are not rendered by default.
Oops, something went wrong.
Empty file.
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,21 @@ | ||
name: gixstapose-ex | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- fresnel=0.13.1 | ||
- gsd=2.4.1 | ||
- jupyterlab=3.0.10 | ||
- ipython=7.10.0 | ||
- matplotlib=3.3.4 | ||
- mbuild=0.10.13 | ||
- nodejs>=10 | ||
- numpy=1.20.1 | ||
- openbabel=3.1.1 | ||
- pillow=8.1 | ||
- pip=21.0.1 | ||
- py3Dmol=0.8.0 | ||
- pyside2=5.13.2 | ||
- python=3.7 | ||
- rowan=1.3.0 | ||
- pip: | ||
- git+https://bitbucket.org/cmelab/cme_utils |
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,3 @@ | ||
VERSION = (0, 0, 1) | ||
|
||
__version__ = ".".join(map(str, VERSION)) |
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.