forked from deeplearning4j/deeplearning4j
-
Notifications
You must be signed in to change notification settings - Fork 5
/
publish-snapshots.sh
21 lines (20 loc) · 990 Bytes
/
publish-snapshots.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash
# See: https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow
# This just invokes the needed workflows with the default values (which mean snapshots)
# This script usually will be used within a cron job.
git clone https://github.com/eclipse/deeplearning4j dl4j-snapshots-run
cd dl4j-snapshots-run
gh workflow run build-deploy-android-arm32.yml
gh workflow run build-deploy-android-arm64.yml
gh workflow run build-deploy-android-x86.yml
gh workflow run build-deploy-android-x86_64.yml
gh workflow run build-deploy-cross-platform.yml
gh workflow run build-deploy-linux-arm32.yml
gh workflow run build-deploy-linux-arm64.yml
gh workflow run build-deploy-linux-cuda-11.0.yml
gh workflow run build-deploy-linux-cuda-11.2.yml
gh workflow run build-deploy-linux-x86_64.yml
gh workflow run build-deploy-mac.yml
gh workflow run build-deploy-windows-cuda-11.0.yml
gh workflow run build-deploy-windows-cuda-11.2.yml
gh workflow run build-deploy-windows.yml