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

Fix and improve static builds #2755

Merged
merged 19 commits into from
Aug 17, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fix feedstock patch path
  • Loading branch information
AntoinePrv committed Aug 16, 2023
commit 4d161234a3185f72311c8fc613ca20d7a80f1755
3 changes: 2 additions & 1 deletion .github/workflows/static_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
# replace the url: ... until the libmamba.patch line with git_url: ../..
- name: Patch micromamba-feedstock
run: |
cp ./micromamba/recipe/* micromamba-feedstock/recipe/
cp micromamba-feedstock/mamba/micromamba/recipe/* micromamba-feedstock/recipe/
- uses: mamba-org/setup-micromamba@v1
with:
environment-name: mambabuild
Expand All @@ -59,6 +59,7 @@ jobs:
- name: Unpack micromamba package
shell: bash -l {0}
run: |
micromamba package extract micromamba-feedstock/
cd $MAMBA_ROOT_PREFIX/envs/mambabuild/conda-bld/${{ matrix.platform }}-${{ matrix.arch }}
tar -xvf micromamba-*.tar.bz2
mkdir -p ${{ github.workspace }}/artifacts
Expand Down
Loading