Compare commits
3 Commits
9a52e369f2
...
959830c652
Author | SHA1 | Date |
---|---|---|
Dan Vargas | 959830c652 | |
Thomas Hobson | 7da1a7dce8 | |
Thomas Hobson | 4ef3e4e5c3 |
|
@ -91,7 +91,7 @@ jobs:
|
|||
docker run -v $(pwd)'/repo:/piston/repo' -v $(pwd)'/packages:/piston/packages' -d --name repo docker.pkg.github.com/engineer-man/piston/repo-builder --no-build
|
||||
docker run --network container:repo -v $(pwd)'/data:/piston' -d --name api docker.pkg.github.com/engineer-man/piston/api
|
||||
echo Waiting for API to start..
|
||||
docker run --network container:api appropriate/curl -s --retry 10 --retry-connrefused http://localhost:2000/runtimes
|
||||
docker run --network container:api appropriate/curl -s --retry 10 --retry-connrefused http://localhost:2000/api/v1/runtimes
|
||||
|
||||
echo Waiting for Index to start..
|
||||
docker run --network container:repo appropriate/curl -s --retry 999 --retry-max-time 0 --retry-connrefused http://localhost:8000/index
|
||||
|
@ -100,7 +100,7 @@ jobs:
|
|||
sed -i 's/repo/localhost/g' repo/index
|
||||
|
||||
echo Listing Packages
|
||||
PACKAGES_JSON=$(docker run --network container:api appropriate/curl -s http://localhost:2000/packages)
|
||||
PACKAGES_JSON=$(docker run --network container:api appropriate/curl -s http://localhost:2000/api/v1/packages)
|
||||
echo $PACKAGES_JSON
|
||||
|
||||
echo Getting CLI ready
|
||||
|
@ -114,7 +114,7 @@ jobs:
|
|||
PKG_VERSION=$(awk -F- '{ print $2 }' <<< $package)
|
||||
|
||||
echo "Installing..."
|
||||
docker run --network container:api appropriate/curl -sXPOST http://localhost:2000/packages/$PKG_PATH
|
||||
docker run --network container:api appropriate/curl -sXPOST http://localhost:2000/api/v1/packages/$PKG_PATH
|
||||
|
||||
TEST_SCRIPTS=packages/$PKG_PATH/test.*
|
||||
echo "Tests: $TEST_SCRIPTS"
|
||||
|
@ -123,7 +123,7 @@ jobs:
|
|||
do
|
||||
TEST_RUNTIME=$(awk -F. '{print $2}' <<< $(basename $tscript))
|
||||
echo Running $tscript with runtime=$TEST_RUNTIME
|
||||
docker run --network container:api -v "$PWD/cli:/app" -v "$PWD/$(dirname $tscript):/pkg" node:15 /app/index.js run $TEST_RUNTIME $PKG_VERSION /pkg/$(basename $tscript) > test_output
|
||||
docker run --network container:api -v "$PWD/cli:/app" -v "$PWD/$(dirname $tscript):/pkg" node:15 /app/index.js run $TEST_RUNTIME -l $PKG_VERSION /pkg/$(basename $tscript) > test_output
|
||||
cat test_output
|
||||
grep "OK" test_output
|
||||
done
|
||||
|
@ -134,7 +134,7 @@ jobs:
|
|||
if: ${{ always() }}
|
||||
run: |
|
||||
docker logs api
|
||||
docker logs piston_fs_repo
|
||||
docker logs repo
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -8,6 +8,7 @@ tar xzf java.tar.gz --strip-components=1
|
|||
rm java.tar.gz
|
||||
cd ..
|
||||
|
||||
curl -L "https://dl.bintray.com/groovy/maven/apache-groovy-binary-3.0.7.zip" -o groovy.zip
|
||||
# Download Groovy binaries
|
||||
curl -L "https://groovy.jfrog.io/artifactory/dist-release-local/groovy-zips/apache-groovy-binary-3.0.7.zip" -o groovy.zip
|
||||
unzip -q groovy.zip
|
||||
rm groovy.zip
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Compile groovy scripts into a separate "classes" directory
|
||||
# NOTE: - Main file MUST be a groovy script
|
||||
# - not supporting object class entry points as of now
|
||||
groovyc -d classes "$@"
|
||||
|
||||
# Create the Manifest and include groovy jars:
|
||||
# NOTE: - main class will be the first file ('.' becomes '_' and without the extension)
|
||||
# - groovy lib jars MUST be in the class path in order to work properly
|
||||
echo "Main-Class: $(sed 's/\./\_/g'<<<${1%.*})
|
||||
Class-Path: $(echo $GROOVY_HOME/lib/*.jar | sed 's/\s/\n /g')
|
||||
|
||||
" > manifest.txt
|
||||
|
||||
# Create the jar from the manifest and classes
|
||||
jar cfm out.jar manifest.txt -C classes .
|
|
@ -2,4 +2,9 @@
|
|||
|
||||
# Groovy requires JAVA_HOME to be set
|
||||
export JAVA_HOME=$PWD/java
|
||||
export PATH=$PWD/groovy-3.0.7/bin:$PATH
|
||||
|
||||
# GROOVY_HOME needed to get the groovy libs
|
||||
export GROOVY_HOME=$PWD/groovy-3.0.7
|
||||
|
||||
# Add java and groovy binaries to the path
|
||||
export PATH=$PWD/java/bin:$PWD/groovy-3.0.7/bin:$PATH
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
groovy "$@"
|
||||
# Run the jar created during compile
|
||||
shift
|
||||
java -jar out.jar "$@"
|
||||
|
|
Loading…
Reference in New Issue