mirror of
https://github.com/ivabus/pantry
synced 2024-11-29 19:55:06 +03:00
parent
79a1945b45
commit
0afb380e6b
1 changed files with 13 additions and 6 deletions
|
@ -23,12 +23,19 @@ build:
|
||||||
dependencies:
|
dependencies:
|
||||||
tea.xyz/gx/cc: c99
|
tea.xyz/gx/cc: c99
|
||||||
tea.xyz/gx/make: '*'
|
tea.xyz/gx/make: '*'
|
||||||
script: |
|
script:
|
||||||
./configure --prefix={{ prefix }}
|
- ./configure --prefix={{ prefix }}
|
||||||
make --jobs {{ hw.concurrency }}
|
# 1.4.4 tries to remove a file that doesn't exist
|
||||||
make --jobs {{ hw.concurrency }} install
|
- run: |
|
||||||
make -C librhash install-lib-headers
|
sed -i.bak 's|rm -f $(LIBRHASH_SOLINK)|test -f $(LIBRHASH_SOLINK) \&\& rm -f $(LIBRHASH_SOLINK)|' Makefile
|
||||||
make test
|
rm Makefile.bak
|
||||||
|
working-directory: librhash
|
||||||
|
if: =1.4.4
|
||||||
|
|
||||||
|
- make --jobs {{ hw.concurrency }}
|
||||||
|
- make --jobs {{ hw.concurrency }} install
|
||||||
|
- make -C librhash install-lib-headers
|
||||||
|
- make test
|
||||||
|
|
||||||
test:
|
test:
|
||||||
script: |
|
script: |
|
||||||
|
|
Loading…
Reference in a new issue