Skip to content

Commit

Permalink
just using cargo in jenkins commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Sarsoo committed Feb 1, 2024
1 parent 1f7476a commit fcca086
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .jenkins/jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ pipeline {
stages {
stage('Build') {
steps {
sh 'source ~/.cargo/env && cargo build'
sh 'cargo build'
}
}

stage('Test') {
steps {
sh 'source ~/.cargo/env && cargo test'
sh 'cargo test'
}
}
}
Expand Down

0 comments on commit fcca086

Please sign in to comment.