Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/dockerhub-publish-dagmc-libmesh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: dockerhub-publish-latest-dagmc-libmesh

on:
push:
branches: master
branches:
- master

jobs:
main:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/dockerhub-publish-dagmc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: dockerhub-publish-latest-dagmc

on:
push:
branches: master
branches:
- master

jobs:
main:
Expand All @@ -16,7 +17,7 @@ jobs:
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v3
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/dockerhub-publish-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: dockerhub-publish-develop

on:
push:
branches: develop
branches:
- develop

jobs:
main:
Expand All @@ -16,7 +17,7 @@ jobs:
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v3
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/dockerhub-publish-develop-dagmc-libmesh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: dockerhub-publish-develop-dagmc-libmesh

on:
push:
branches: develop
branches:
- develop

jobs:
main:
Expand All @@ -16,7 +17,7 @@ jobs:
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v3
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/dockerhub-publish-develop-dagmc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: dockerhub-publish-develop-dagmc

on:
push:
branches: develop
branches:
- develop

jobs:
main:
Expand All @@ -16,7 +17,7 @@ jobs:
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v3
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/dockerhub-publish-develop-libmesh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: dockerhub-publish-develop-libmesh

on:
push:
branches: develop
branches:
- develop

jobs:
main:
Expand All @@ -16,7 +17,7 @@ jobs:
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v3
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/dockerhub-publish-libmesh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: dockerhub-publish-latest-libmesh

on:
push:
branches: master
branches:
- master

jobs:
main:
Expand All @@ -16,7 +17,7 @@ jobs:
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v3
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/dockerhub-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: dockerhub-publish-latest

on:
push:
branches: master
branches:
- master

jobs:
main:
Expand All @@ -16,7 +17,7 @@ jobs:
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v3
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ ENV LIBMESH_REPO='https://github.com/libMesh/libmesh'
ENV LIBMESH_INSTALL_DIR=$HOME/LIBMESH

# NJOY variables
ENV NJOY_TAG='2016.78'
ENV NJOY_REPO='https://github.com/njoy/NJOY2016'

# Setup environment variables for Docker image
Expand All @@ -78,7 +79,7 @@ RUN pip install --upgrade pip

# Clone and install NJOY2016
RUN cd $HOME \
&& git clone --single-branch --depth 1 ${NJOY_REPO} \
&& git clone --single-branch -b ${NJOY_TAG} --depth 1 ${NJOY_REPO} \
&& cd NJOY2016 \
&& mkdir build \
&& cd build \
Expand Down
Loading