File tree Expand file tree Collapse file tree 1 file changed +22
-1
lines changed
Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change 2929 # Verify gpg secret key
3030 gpg --list-secret-keys --keyid-format LONG
3131
32+ # Begin copy from ci.yml. Refactor?
33+
34+ - name : Set up Python
35+ uses : actions/setup-python@v4
36+ with :
37+ python-version : ' 3.11'
38+
39+ - name : Install zarrita
40+ run : |
41+ python -m venv venv_zarrita
42+ if [ "${{ runner.os }}" = "Windows" ]; then venv_zarrita/Scripts/pip install zarrita; else venv_zarrita/bin/pip install zarrita; fi
43+
44+ - name : Download testdata
45+ run : |
46+ mkdir testoutput
47+ curl https://static.webknossos.org/data/zarr_v3/l4_sample.zip -o testdata/l4_sample.zip
48+ cd testdata
49+ unzip l4_sample.zip
50+
51+ # End copy from ci.yml
52+
3253 - name : Publish package
33- run : mvn --batch-mode deploy
54+ run : mvn --batch-mode deploy -DargLine="-Xmx6g"
3455 env :
3556 MAVEN_USERNAME : ${{ secrets.OSSRH_USERNAME }}
3657 MAVEN_PASSWORD : ${{ secrets.OSSRH_TOKEN }}
You can’t perform that action at this time.
0 commit comments