We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77a52fd commit c268f2aCopy full SHA for c268f2a
scripts/aws_tests.bash
@@ -45,7 +45,7 @@ process_instance() {
45
--output text)
46
echo "Instance ${INSTANCE_ID} public IP: ${PUBLIC_IP}"
47
48
- rsync -avz --partial --progress --exclude ".git" --exclude "build" -e "${SSH_COMMAND}" \
+ git ls-files -z | rsync -avz --partial --progress --from0 --files-from=- -e "${SSH_COMMAND}" \
49
./ ubuntu@${PUBLIC_IP}:~/${PROJECT_DIR}
50
${SSH_COMMAND} ubuntu@${PUBLIC_IP} << EOF
51
set -e # Exit on error
@@ -60,6 +60,7 @@ process_instance() {
60
cmake -B build . && cmake --build build
61
62
echo "Running the python script to generate tests..."
63
+ echo -1 | sudo tee /proc/sys/kernel/perf_event_paranoid
64
./scripts/generate_multiple_tables.py
65
EOF
66
0 commit comments