mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-03 20:53:54 +01:00
17 lines
199 B
Bash
Executable File
17 lines
199 B
Bash
Executable File
#!/bin/bash
|
|
# Stage 3
|
|
|
|
# Extract cache from compile stage
|
|
cd ../
|
|
tar -zxf $HOME/cache/compil.tgz
|
|
|
|
# Configure QP2
|
|
cd qp2
|
|
source ./quantum_package.rc
|
|
exec qp_test -a && rm $HOME/cache/compil.tgz
|
|
|
|
|
|
|
|
|
|
|