Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Let conda-lock produce both unified and platform-specific lockfiles #123

Merged
merged 3 commits into from
Aug 7, 2024
Merged
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
5 changes: 3 additions & 2 deletions .github/workflows/conda-lock-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,11 @@ jobs:
conda-lock
mamba

# Run "conda-lock" for linux-64 only
# Generate unified 'conda-lock.yml' and platform-specific lockfiles
- name: Run conda-lock
run: |
conda-lock lock --mamba --kind explicit --file environment.yml --platform linux-64
conda-lock lock --mamba --file environment.yml --platform linux-64
conda-lock render --kind explicit --platform linux-64

# Commit the change to the PR branch if any changes
- name: Commit condalock files to PR
Expand Down