Skip to content

Commit e859854

Browse files
committed
ARTIFACTORY.md
1 parent cb7b6ad commit e859854

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

ARTIFACTORY.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
```

build-linux.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,16 @@ docker cp $id:$wheel .
3939
docker rm -v $id
4040

4141
which jfrog || brew install jfrog-cli
42+
43+
## Artifactory UW2
4244
jfrog 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+

0 commit comments

Comments
 (0)