mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-02 19:39:56 -05:00
/benchmark/sqllogictest_tester/SQLLogicTestTesterJenkinsfile: Iterating on jenkinsfile fix
This commit is contained in:
@@ -6,30 +6,28 @@ pipeline {
|
||||
}
|
||||
stages {
|
||||
stage('Run sqllogictests against Dolt commits') {
|
||||
stage ("test commits") {
|
||||
environment {
|
||||
PATH = "${pwd()}/.ci_bin/node_modules/.bin:${env.PATH}"
|
||||
TMPDIR = "${pwd()}/tempDir"
|
||||
DOLT_ROOT_PATH="${pwd()}/tempRoot"
|
||||
DOLT_CREDS = credentials("system-account-dolthub-creds")
|
||||
DOLT_GLOBAL_CONFIG = credentials("system-account-dolthub-config")
|
||||
TMP_TESTING_DIR = "${pwd()}/tempTesting"
|
||||
TMP_CSV_DIR = "${pwd()}/tempCSV"
|
||||
environment {
|
||||
PATH = "${pwd()}/.ci_bin/node_modules/.bin:${env.PATH}"
|
||||
TMPDIR = "${pwd()}/tempDir"
|
||||
DOLT_ROOT_PATH="${pwd()}/tempRoot"
|
||||
DOLT_CREDS = credentials("system-account-dolthub-creds")
|
||||
DOLT_GLOBAL_CONFIG = credentials("system-account-dolthub-config")
|
||||
TMP_TESTING_DIR = "${pwd()}/tempTesting"
|
||||
TMP_CSV_DIR = "${pwd()}/tempCSV"
|
||||
}
|
||||
steps {
|
||||
sh "rm -rf tempDolt"
|
||||
sh "rm -rf $TMPDIR && mkdir $TMPDIR"
|
||||
sh "rm -rf $TMP_CSV_DIR && mkdir $TMP_CSV_DIR"
|
||||
sh "rm -rf $DOLT_ROOT_PATH && mkdir $DOLT_ROOT_PATH"
|
||||
dir ("sqllogictest") {
|
||||
git url: "https://github.com/liquidata-inc/sqllogictest.git"
|
||||
}
|
||||
steps {
|
||||
sh "rm -rf tempDolt"
|
||||
sh "rm -rf $TMPDIR && mkdir $TMPDIR"
|
||||
sh "rm -rf $TMP_CSV_DIR && mkdir $TMP_CSV_DIR"
|
||||
sh "rm -rf $DOLT_ROOT_PATH && mkdir $DOLT_ROOT_PATH"
|
||||
dir ("sqllogictest") {
|
||||
git url: "https://github.com/liquidata-inc/sqllogictest.git"
|
||||
}
|
||||
dir ("tempDolt") {
|
||||
git url: "https://github.com/liquidata-inc/dolt.git"
|
||||
}
|
||||
dir ("benchmark/sqllogictest_tester") {
|
||||
sh "nice ./run_tester.sh ./tester.vars"
|
||||
}
|
||||
dir ("tempDolt") {
|
||||
git url: "https://github.com/liquidata-inc/dolt.git"
|
||||
}
|
||||
dir ("benchmark/sqllogictest_tester") {
|
||||
sh "nice ./run_tester.sh ./tester.vars"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user