mirror of
https://github.com/ivabus/pantry
synced 2024-11-29 19:55:06 +03:00
fix(gcc=11.4)[1]
looks like his patches mess up linux builds
This commit is contained in:
parent
3b5cb3392b
commit
1b4f16216c
1 changed files with 8 additions and 4 deletions
|
@ -30,14 +30,18 @@ build:
|
||||||
script:
|
script:
|
||||||
# If we have a patch, apply it
|
# If we have a patch, apply it
|
||||||
- |
|
- |
|
||||||
if test -n "$PATCH{{version.major}}{{version.minor}}"; then
|
if test "{{hw.platform}}+{{hw.arch}}" = "darwin+aarch64"; then
|
||||||
curl "$PATCH{{version.major}}{{version.minor}}" | patch -p1 -d..
|
if test -n "$PATCH{{version.major}}{{version.minor}}"; then
|
||||||
|
curl "$PATCH{{version.major}}{{version.minor}}" | patch -p1 -d..
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# if there's no diff yet, unpack iains' source over ours
|
# if there's no diff yet, unpack iains' source over ours
|
||||||
- |
|
- |
|
||||||
if test -n "$BRANCH{{version.major}}{{version.minor}}"; then
|
if test "{{hw.platform}}+{{hw.arch}}" = "darwin+aarch64"; then
|
||||||
curl -L "$BRANCH{{version.major}}{{version.minor}}" | tar xz --strip-components=1 -C ..
|
if test -n "$BRANCH{{version.major}}{{version.minor}}"; then
|
||||||
|
curl -L "$BRANCH{{version.major}}{{version.minor}}" | tar xz --strip-components=1 -C ..
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# The spaces mess things up in the env key
|
# The spaces mess things up in the env key
|
||||||
|
|
Loading…
Reference in a new issue