Skip to content

Commit

Permalink
Update credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
xluciano committed Oct 31, 2023
1 parent 0b7545f commit 6603f49
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ pipeline {
name: 'TOOLS_VERSION',
defaultValue: '15.2.1',
description: 'The XTC tools version'
PASS_1: "Welcome"
PASS_2: "2"
PASS_3: "Xmos"
PASS: PASS_1 + PASS_2 + PASS_3
)
}
environment {
PYTHON_VERSION = "3.8.11"
VENV_DIRNAME = ".venv"
BUILD_DIRNAME = "dist"
RTOS_TEST_RIG_TARGET = "XCORE-AI-EXPLORER"
PASS_1 = "Welcome"
PASS_2 = "2"
PASS_3 = "Xmos"
PASS = PASS_1 + PASS_2 + PASS_3
LOCAL_WIFI_SSID = credentials('XMOSGUEST')
LOCAL_WIFI_PASS = credentials(PASS_1)
LOCAL_WIFI_PASS = credentials(PASS)
}
stages {
stage('Build and Docs') {
Expand Down

0 comments on commit 6603f49

Please sign in to comment.