variables: GREET: "Mundo" stages: - test java: stage: test script: - javac src/*.java - java -cp src/ Hello $GREET > result.txt - cat result.txt - cat result.txt | grep "Hello $GREET" python: stage: test script: - python src/hello.py $GREET > result.txt - cat result.txt - cat result.txt | grep "Hello $GREET"