Remove cctools patch from feedstock in CI (#3442)

This commit is contained in:
Johan Mabille 2024-09-12 21:26:43 +02:00 committed by GitHub
parent a261cd461d
commit 5810eb8c0b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 0 deletions

View File

@ -49,12 +49,22 @@ jobs:
cd micromamba-feedstock/
sed -i '' 's/libcurl >=8.4.0/libcurl >=8.4.0,<8.10/g' recipe/meta.yaml
sed -i '' 's/libcurl-static >=8.4.0/libcurl-static >=8.4.0,<8.10/g' recipe/meta.yaml
- name: remove cctools patch
if: ${{ matrix.platform == 'osx' }}
run: |
cd micromamba-feedstock/
sed -i '' '/cctools-and-ld64.patch/d' recipe/meta.yaml
- name: Pin libcurl
if: ${{ matrix.platform == 'linux' }}
run: |
cd micromamba-feedstock/
sed -i 's/libcurl >=8.4.0/libcurl >=8.4.0,<8.10/g' recipe/meta.yaml
sed -i 's/libcurl-static >=8.4.0/libcurl-static >=8.4.0,<8.10/g' recipe/meta.yaml
- name: remove cctools patch
if: ${{ matrix.platform == 'linux' }}
run: |
cd micromamba-feedstock/
sed -i '/cctools-and-ld64.patch/d' recipe/meta.yaml
- name: Checkout mamba branch
uses: actions/checkout@v4
with: