mirror of
https://github.com/ivabus/pantry
synced 2024-11-25 01:45:06 +03:00
script cleanup
This commit is contained in:
parent
2e6aade630
commit
b2c302d631
1 changed files with 24 additions and 10 deletions
|
@ -22,16 +22,30 @@ dependencies:
|
|||
openssl.org: '*'
|
||||
|
||||
build:
|
||||
script: |-
|
||||
sh build.sh
|
||||
bin/nim c koch
|
||||
./koch boot -d:release
|
||||
./koch tools
|
||||
./install.sh {{ prefix }}
|
||||
rm -rf {{ prefix }}/nim/compiler
|
||||
cp -r {{ prefix }}/nim/* {{ prefix }}
|
||||
rm -rf {{ prefix }}/nim
|
||||
for fn in atlas nim nim-gdb nim_dbg nimble nimgrep nimpretty nimsuggest testament; do cp ./bin/$fn {{ prefix }}/bin/; done
|
||||
script:
|
||||
- sh build.sh
|
||||
- ./bin/nim c koch
|
||||
- ./koch boot -d:release
|
||||
- ./koch tools
|
||||
- ./install.sh {{ prefix }}
|
||||
- run: |
|
||||
rm -rf nim/compiler
|
||||
cp -r nim/* .
|
||||
rm -rf nim
|
||||
working-directory: ${{prefix}}
|
||||
- run: cp $BINS {{ prefix }}/bin/
|
||||
working-directory: bin
|
||||
env:
|
||||
BINS:
|
||||
- atlas
|
||||
- nim
|
||||
- nim-gdb
|
||||
- nim_dbg
|
||||
- nimble
|
||||
- nimgrep
|
||||
- nimpretty
|
||||
- nimsuggest
|
||||
- testament
|
||||
|
||||
test:
|
||||
script: |
|
||||
|
|
Loading…
Reference in a new issue