Simplify CI
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
f1e824ce32
commit
e29937f527
|
@ -5,10 +5,8 @@ type: docker
|
||||||
steps:
|
steps:
|
||||||
- name: Fetch-Tester
|
- name: Fetch-Tester
|
||||||
image: deukhoofd/linux64builder
|
image: deukhoofd/linux64builder
|
||||||
environment:
|
|
||||||
TESTERVERSION: 0.0.1
|
|
||||||
commands:
|
commands:
|
||||||
- 'curl -X GET "https://git.p-epsilon.com/api/v1/repos/Deukhoofd/PokemonScriptTester/releases/tags/$TESTERVERSION" -H "accept: application/json" | jq \'.assets[] | select(.name=="PokemonScriptTester") .browser_download_url \' | xargs curl > PokemonScriptTester'
|
- fetch_tester.sh
|
||||||
- name: Run-Tests
|
- name: Run-Tests
|
||||||
image: deukhoofd/linux64builder
|
image: deukhoofd/linux64builder
|
||||||
commands:
|
commands:
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
TESTERVERSION=0.0.1
|
||||||
|
|
||||||
|
curl -X GET "https://git.p-epsilon.com/api/v1/repos/Deukhoofd/PokemonScriptTester/releases/tags/$TESTERVERSION" -H "accept: application/json" |
|
||||||
|
jq '.assets[] | select(.name=="PokemonScriptTester") .browser_download_url ' |
|
||||||
|
xargs curl > PokemonScriptTester
|
Loading…
Reference in New Issue