diff options
author | merakor <cem@ckyln.com> | 2021-07-03 00:37:38 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2021-07-03 00:37:38 +0000 |
commit | b47ffbf5fa8929f82c2f471258cdba2c810d3a2b (patch) | |
tree | 39b643c2e19b3008ea752bc84b660018f9ec18d6 | |
parent | ca7d8217d5a2282d96890c4f5895ef0b87e755d6 (diff) | |
download | cpt-b47ffbf5fa8929f82c2f471258cdba2c810d3a2b.tar.gz |
build.yml: install pax
FossilOrigin-Name: d12e7404a2b47ded9905ada17122a10549c2b68c6a1081c3ab94aad9b526ced1
-rw-r--r-- | .build.yml | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1,5 +1,8 @@ image: alpine/edge packages: + - musl-dev + - gcc + - bison - curl - rsync - shellcheck @@ -9,6 +12,11 @@ tasks: - build: | cd cpt make + - install-pax: | + git clone https://github.com/carbslinux/otools + cd otools + make pax + sudo install -Dm755 pax /usr/bin/pax - test: | cd cpt curl -fsSL https://git.io/shellspec | sudo sh -s -- -y -p /usr |