Switched Jenkinsfile to manual installations.
This commit is contained in:
parent
3b3ecb9120
commit
59dbeec8be
25
Jenkinsfile
vendored
25
Jenkinsfile
vendored
@ -1,19 +1,24 @@
|
|||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
|
environment {
|
||||||
|
PATH = "/home/jenkins/.local/share/fnm:${PATH}"
|
||||||
|
}
|
||||||
stages {
|
stages {
|
||||||
stage("install") {
|
stage("install") {
|
||||||
steps {
|
steps {
|
||||||
sh '''#!/usr/bin/env pwsh
|
sh '''
|
||||||
conda env create -q -f environment.yml
|
curl -fsSL https://fnm.vercel.app/install | bash
|
||||||
conda activate webdev
|
eval "`fnm env`"
|
||||||
|
fnm install
|
||||||
|
fnm use
|
||||||
npm install
|
npm install
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("tests") {
|
stage("test") {
|
||||||
steps {
|
steps {
|
||||||
sh '''#!/usr/bin/env pwsh
|
sh '''
|
||||||
conda activate webdev
|
eval "`fnm env`"
|
||||||
npm run test:junit
|
npm run test:junit
|
||||||
'''
|
'''
|
||||||
junit 'junit/*.xml'
|
junit 'junit/*.xml'
|
||||||
@ -21,8 +26,8 @@ pipeline {
|
|||||||
}
|
}
|
||||||
stage("build") {
|
stage("build") {
|
||||||
steps {
|
steps {
|
||||||
sh '''#!/usr/bin/env pwsh
|
sh '''
|
||||||
conda activate webdev
|
eval "`fnm env`"
|
||||||
npm run build:prod
|
npm run build:prod
|
||||||
'''
|
'''
|
||||||
fingerprint "dist/**"
|
fingerprint "dist/**"
|
||||||
@ -31,8 +36,8 @@ pipeline {
|
|||||||
}
|
}
|
||||||
stage("generate docs") {
|
stage("generate docs") {
|
||||||
steps {
|
steps {
|
||||||
sh '''#!/usr/bin/env pwsh
|
sh '''
|
||||||
conda activate webdev
|
eval "`fnm env`"
|
||||||
npm run docs
|
npm run docs
|
||||||
'''
|
'''
|
||||||
publishHTML([allowMissing: false, alwaysLinkToLastBuild: true, keepAll: true, reportDir: './docs', reportFiles: 'index.html', reportName: 'AudioShowKit Docs', reportTitles: ''])
|
publishHTML([allowMissing: false, alwaysLinkToLastBuild: true, keepAll: true, reportDir: './docs', reportFiles: 'index.html', reportName: 'AudioShowKit Docs', reportTitles: ''])
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
name: webdev
|
|
||||||
channels:
|
|
||||||
- conda-forge
|
|
||||||
dependencies:
|
|
||||||
- _libgcc_mutex=0.1=conda_forge
|
|
||||||
- _openmp_mutex=4.5=2_gnu
|
|
||||||
- ca-certificates=2022.9.24=ha878542_0
|
|
||||||
- icu=70.1=h27087fc_0
|
|
||||||
- libgcc-ng=12.2.0=h65d4601_19
|
|
||||||
- libgomp=12.2.0=h65d4601_19
|
|
||||||
- libstdcxx-ng=12.2.0=h46fd767_19
|
|
||||||
- libuv=1.44.2=h166bdaf_0
|
|
||||||
- libzlib=1.2.13=h166bdaf_4
|
|
||||||
- nodejs=18.12.1=h8839609_0
|
|
||||||
- openssl=3.0.7=h166bdaf_0
|
|
||||||
- zlib=1.2.13=h166bdaf_4
|
|
||||||
prefix: /home/conda/envs/webdev
|
|
Loading…
Reference in New Issue
Block a user