fix(rhash)

closes #2596
This commit is contained in:
Jacob Heider 2023-07-16 01:41:55 -04:00
parent 79a1945b45
commit 0afb380e6b
No known key found for this signature in database
GPG key ID: 59D15ADC7DCD39BB

View file

@ -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: |