Minor changes, removed the use of 'sudo' & changed build archive name from ncc.tar.gz to build.tar.gz
This commit is contained in:
parent
d34d857a84
commit
ec7e7a31ca
2 changed files with 3 additions and 3 deletions
|
@ -11,7 +11,7 @@ before_script:
|
||||||
#- gpg --keyserver hkps://keys.openpgp.org --recv-keys 0x9D8A98B29B2D5D79
|
#- gpg --keyserver hkps://keys.openpgp.org --recv-keys 0x9D8A98B29B2D5D79
|
||||||
#- gpg --verify phive.phar.asc phive.phar
|
#- gpg --verify phive.phar.asc phive.phar
|
||||||
- chmod +x phive.phar
|
- chmod +x phive.phar
|
||||||
- sudo mv phive.phar /usr/local/bin/phive
|
- mv phive.phar /usr/local/bin/phive
|
||||||
|
|
||||||
# install phpab
|
# install phpab
|
||||||
- phive install phpab --global --trust-gpg-keys 0x2A8299CE842DD38C
|
- phive install phpab --global --trust-gpg-keys 0x2A8299CE842DD38C
|
||||||
|
@ -21,7 +21,7 @@ build:
|
||||||
- make redist tar
|
- make redist tar
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- build/src/ncc.tar.gz
|
- build/src/build.tar.gz
|
||||||
|
|
||||||
test:
|
test:
|
||||||
script:
|
script:
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -106,7 +106,7 @@ redist: autoload
|
||||||
cp -rf $(SRC_PATH)/default_repositories/*.json $(BUILD_PATH)/src/repositories
|
cp -rf $(SRC_PATH)/default_repositories/*.json $(BUILD_PATH)/src/repositories
|
||||||
|
|
||||||
tar: redist
|
tar: redist
|
||||||
cd $(BUILD_PATH)/src; tar -czvf ../ncc.tar.gz *
|
cd $(BUILD_PATH)/src; tar -czvf ../build.tar.gz *
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf $(BUILD_PATH)
|
rm -rf $(BUILD_PATH)
|
||||||
|
|
Loading…
Add table
Reference in a new issue