move back to pure upstream version (#50)
This commit is contained in:
parent
e123cf38ed
commit
5fd8135783
|
@ -1,4 +1,4 @@
|
||||||
[submodule "secp256k1_wrapper/secp256k1"]
|
[submodule "secp256k1_wrapper/secp256k1"]
|
||||||
path = vendor/secp256k1
|
path = vendor/secp256k1
|
||||||
url = https://github.com/status-im/secp256k1.git
|
url = https://github.com/bitcoin-core/secp256k1.git
|
||||||
branch = master
|
branch = master
|
||||||
|
|
|
@ -34,25 +34,21 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Tests') {
|
stage('Tests: C') {
|
||||||
parallel {
|
environment {
|
||||||
stage('C') {
|
NIMLANG = 'c'
|
||||||
environment {
|
}
|
||||||
NIMLANG = 'c'
|
steps {
|
||||||
}
|
sh 'nimble test'
|
||||||
steps {
|
}
|
||||||
sh 'nimble test'
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
stage('C++') {
|
stage('Tests: C++') {
|
||||||
environment {
|
environment {
|
||||||
NIMLANG = 'cpp'
|
NIMLANG = 'cpp'
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
sh 'nimble test'
|
sh 'nimble test'
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 1dd68bcd47b053673a34cd83490d79d787da1585
|
Subproject commit 346a053d4c442e08191f075c3932d03140579d47
|
Loading…
Reference in New Issue