mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-07 05:53:37 +01:00
18 lines
191 B
Bash
18 lines
191 B
Bash
|
#!/bin/bash
|
||
|
# Stage 3
|
||
|
|
||
|
# Extract cache from compile stage
|
||
|
cd ../
|
||
|
tar -zxf $HOME/cache/compil.tgz
|
||
|
rm $HOME/cache/compil.tgz
|
||
|
|
||
|
# Configure QP2
|
||
|
cd qp2
|
||
|
source ./quantum_package.rc
|
||
|
qp_test -a
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|