-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change-Id: Iaed629ebdeda8ac2344d8460f2077b0768d0cc5c
- Loading branch information
Electronic Vision(s)
committed
Dec 4, 2023
1 parent
89f0e78
commit b9088ae
Showing
128 changed files
with
9,375 additions
and
5,072 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
@Library("jenlib") | ||
@Library("jenlib") _ | ||
|
||
withCcache() { | ||
wafDefaultPipeline(projects: ["jax-snn"], | ||
container: [app: "dls-core"], | ||
configureInstallOptions: "--build-profile=ci", | ||
notificationChannel: "#jenkins-trashbin") | ||
notificationChannel: "#softies") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
@Library("jenlib") _ | ||
|
||
import static java.util.UUID.randomUUID | ||
|
||
try { | ||
runOnSlave(label: "frontend") { | ||
stage("Checkout") { | ||
checkout scm | ||
} | ||
|
||
pipelineFromMarkdown(markdownFilePath: "INSTALL_OLDSKOOL.md", | ||
blockType: "shell") | ||
} | ||
} catch (Throwable t) { | ||
notifyFailure(mattermostChannel: "#dls-software") | ||
throw t | ||
} | ||
|
||
if (currentBuild.currentResult != "SUCCESS") { | ||
notifyFailure(mattermostChannel: "#dls-software") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Building dist packages and run tests | ||
|
||
```shell | ||
set -o errexit | ||
python -m virtualenv venv | ||
source venv/bin/activate | ||
pip install --upgrade pip | ||
pip install --upgrade build | ||
pip install --upgrade virtualenv | ||
sed -i 's/name = "jaxsnn"/name = "jaxsnn"\nversion = "0.0.999"/' pyproject.toml | ||
python3 -m build | ||
pip install dist/*.whl | ||
shopt -s globstar | ||
for test in tests/**/*.py; do python $test; done | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.