File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed
Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 1+ # Publish to artifactory
2+
3+ ## MacOS binary
4+ ``` shell
5+ maturin publish --repository-url https://artifactory-uw2.adobeitc.com/artifactory/api/pypi/pypi-arrow-release/ --password $ARTIFACTORY_UW2_TOKEN --username $ARTIFACTORY_USER
6+ ```
7+
8+ ## Linux ARM64
9+ ``` shell
10+ ./build-linux-arm64.sh
11+ ```
12+
13+ ## Linux X86_64
14+ ``` shell
15+ ./build-linux-x86_64.sh
16+ ```
Original file line number Diff line number Diff line change @@ -39,7 +39,16 @@ docker cp $id:$wheel .
3939docker rm -v $id
4040
4141which jfrog || brew install jfrog-cli
42+
43+ # # Artifactory UW2
4244jfrog rt upload --url https://artifactory-uw2.adobeitc.com/artifactory \
4345 --user ${ARTIFACTORY_USER:- $ARTIFACTORY_USERNAME } \
4446 --password ${ARTIFACTORY_UW2_TOKEN:- $ARTIFACTORY_API_TOKEN } \
4547 $wheel pypi-arrow-release/datafusion/$version /
48+
49+ # # Artifactory Corp
50+ # jfrog rt upload --url https://artifactory.corp.adobe.com/artifactory \
51+ # --user ${ARTIFACTORY_USER:-$ARTIFACTORY_USERNAME} \
52+ # --password ${ARTIFACTORY_CORP_TOKEN:-$ARTIFACTORY_API_TOKEN} \
53+ # $wheel pypi-arrow-release/datafusion/$version/
54+
You can’t perform that action at this time.
0 commit comments