diff options
| author | Nicholas Estelami <NEstelami@users.noreply.github.com> | 2022-08-24 00:01:28 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-24 00:01:28 -0400 |
| commit | 1a3ea3895a95dd88806908999661e48fe467c172 (patch) | |
| tree | 0abdc8a09fdd368c50c7bc4c20e94dce2024da5b | |
| parent | b9160e98bf1a46e5fb64923af1f2cf0f3cfc7e3c (diff) | |
| parent | af2094d8026e5d82538cd6792819dc02f8aaca36 (diff) | |
Merge pull request #259 from hensldm/jenkins
MM Jenkins Update
| -rw-r--r-- | Jenkinsfile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index 9c4dde7..48535a5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -68,6 +68,15 @@ pipeline { } } + // INSTALL PYTHON DEPENDENCIES, currently MM only + stage('Install Python dependencies') { + steps { + dir('mm') { + sh 'python3 -m pip install -r requirements.txt' + } + } + } + // BUILD THE REPOS stage('Build repos') { parallel { @@ -82,7 +91,7 @@ pipeline { steps { dir('mm') { sh 'make -j disasm' - sh 'make -j all' + sh 'make -j' } } } |
