Skip to content

Commit 3eb5e08

Browse files
committed
adjusted CI/CD pipeline
1 parent 7698542 commit 3eb5e08

3 files changed

Lines changed: 10 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ jobs:
4848

4949
- name: Download testdata
5050
run: |
51-
mkdir testoutput
52-
curl https://static.webknossos.org/data/zarr_v3/l4_sample.zip -o testdata/l4_sample.zip
53-
cd testdata
51+
mkdir -p zarr-java-core/testoutput zarr-java-ome/testoutput
52+
curl https://static.webknossos.org/data/zarr_v3/l4_sample.zip -o zarr-java-core/testdata/l4_sample.zip
53+
cd zarr-java-core/testdata
5454
unzip l4_sample.zip
5555
5656
- name: Build
@@ -71,4 +71,6 @@ jobs:
7171
- uses: actions/upload-artifact@v4
7272
with:
7373
name: jar-${{ runner.os }}
74-
path: target/*.jar
74+
path: |
75+
zarr-java-core/target/*.jar
76+
zarr-java-ome/target/*.jar

.github/workflows/conformance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Prepare JAR for testing
2929
run: |
3030
# Find the JAR
31-
JAR_PATH=$(ls target/zarr-java-*.jar | grep -v original | grep -v javadoc | grep -v sources | head -1)
31+
JAR_PATH=$(ls zarr-java-core/target/zarr-java-core-*-shaded.jar | head -1)
3232
FULL_JAR_PATH="${GITHUB_WORKSPACE}/${JAR_PATH}"
3333
echo "JAR_PATH=${FULL_JAR_PATH}" >> $GITHUB_ENV
3434
echo "Found JAR at: ${FULL_JAR_PATH}"

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ jobs:
4343

4444
- name: Download testdata
4545
run: |
46-
mkdir testoutput
47-
curl https://static.webknossos.org/data/zarr_v3/l4_sample.zip -o testdata/l4_sample.zip
48-
cd testdata
46+
mkdir -p zarr-java-core/testoutput zarr-java-ome/testoutput
47+
curl https://static.webknossos.org/data/zarr_v3/l4_sample.zip -o zarr-java-core/testdata/l4_sample.zip
48+
cd zarr-java-core/testdata
4949
unzip l4_sample.zip
5050
5151
# End copy from ci.yml

0 commit comments

Comments
 (0)