remove component test stage & fix browser lock
I added component tests stage when i cherry picked :05929a16c7
commit from develop to release branch. Only to later realise that we did not have component tests at the time of this release. This commit removes component tests form CI. This commit also fixes a logic where the secure lock was not shown for all the websites except ".top". Those changes were introduced by me in7958bf189c
This commit is contained in:
parent
abdaa80a96
commit
7224ca70a5
|
@ -61,14 +61,6 @@ pipeline {
|
|||
}
|
||||
}
|
||||
}
|
||||
stage('Component Tests') {
|
||||
steps {
|
||||
sh """#!/bin/bash
|
||||
set -eo pipefail
|
||||
make component-test 2>&1 | tee -a ${LOG_FILE}
|
||||
"""
|
||||
}
|
||||
}
|
||||
stage('Upload') {
|
||||
steps {
|
||||
script {
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
(or dapp?
|
||||
(and (not error?)
|
||||
(when url
|
||||
(and (string/starts-with? url "https://") (string/includes? url ".top"))))))
|
||||
(and (string/starts-with? url "https://") (not (string/includes? url ".top")))))))
|
||||
|
||||
(fx/defn remove-browser
|
||||
{:events [:browser.ui/remove-browser-pressed]}
|
||||
|
|
Loading…
Reference in New Issue