mirror of
https://github.com/ivabus/pantry
synced 2024-11-26 10:25:05 +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:
|
||||
# If we have a patch, apply it
|
||||
- |
|
||||
if test -n "$PATCH{{version.major}}{{version.minor}}"; then
|
||||
curl "$PATCH{{version.major}}{{version.minor}}" | patch -p1 -d..
|
||||
if test "{{hw.platform}}+{{hw.arch}}" = "darwin+aarch64"; then
|
||||
if test -n "$PATCH{{version.major}}{{version.minor}}"; then
|
||||
curl "$PATCH{{version.major}}{{version.minor}}" | patch -p1 -d..
|
||||
fi
|
||||
fi
|
||||
|
||||
# if there's no diff yet, unpack iains' source over ours
|
||||
- |
|
||||
if test -n "$BRANCH{{version.major}}{{version.minor}}"; then
|
||||
curl -L "$BRANCH{{version.major}}{{version.minor}}" | tar xz --strip-components=1 -C ..
|
||||
if test "{{hw.platform}}+{{hw.arch}}" = "darwin+aarch64"; then
|
||||
if test -n "$BRANCH{{version.major}}{{version.minor}}"; then
|
||||
curl -L "$BRANCH{{version.major}}{{version.minor}}" | tar xz --strip-components=1 -C ..
|
||||
fi
|
||||
fi
|
||||
|
||||
# The spaces mess things up in the env key
|
||||
|
|
Loading…
Reference in a new issue