Skip to content

Commit

Permalink
Merge pull request #27 from paulsaxe/main
Browse files Browse the repository at this point in the history
Working on limiting Docker images to using linux-64 Conda installs
  • Loading branch information
paulsaxe authored Feb 27, 2024
2 parents 6aa6ed6 + 19abdbc commit b2f811c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/Docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,13 @@ on:
jobs:
docker:
name: Docker
env:
# Psi4 on conda forge does not supply ARM versions
CONDA_SUBDIR=linux-64
uses: molssi-seamm/devops/.github/workflows/Docker.yaml@main
with:
image : molssi-seamm/seamm-psi4
description: An Psi4 executable packaged for use with SEAMM or standalone
platforms: linux/amd64
# Can limit platforms, e.g., linux/amd64, linux/arm64
# platforms: linux/amd64
secrets: inherit
7 changes: 6 additions & 1 deletion .github/workflows/Release.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Release

on:
workflow_dispatch:
release:
types: [published]
branches:
Expand All @@ -17,9 +18,13 @@ jobs:
docker:
name: Docker
needs: release
env:
# Psi4 on conda forge does not supply ARM versions
CONDA_SUBDIR=linux-64
uses: molssi-seamm/devops/.github/workflows/Docker.yaml@main
with:
image : molssi-seamm/seamm-psi4
description: An Psi4 executable packaged for use with SEAMM or standalone
platforms: linux/amd64
# Can limit platforms, e.g., linux/amd64, linux/arm64
# platforms: linux/amd64
secrets: inherit

0 comments on commit b2f811c

Please sign in to comment.