Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
9e0a85b
PhantomTrianglesTest: initialize the system delegate
stephengold Feb 18, 2021
6b829c6
testcase and fix for issue #1459 (BoundingSphere merge yields NaNs) (…
stephengold Feb 18, 2021
153e3e8
fix issue #1366 (Javadoc not built for jme3-examples)
stephengold Feb 20, 2021
799c59d
test and fix for issue #1469 (initial transform of Joint never cloned)
stephengold Feb 18, 2021
8c534b9
common.gradle: fix for issue #1370 (test classes added to javadoc JARs)
stephengold Feb 25, 2021
e1dc2f6
build.gradle: fix for issue #1370 (test classes added to merged javadoc)
stephengold Feb 25, 2021
3305928
TouchTrigger: resolve issue #1448 (assertion failure in touchHash())
stephengold Feb 26, 2021
44a2433
PhysicsTestHelper: resolve 2 javadoc warnings
stephengold Feb 26, 2021
c322153
LICENSE: include 2021 in the copyright notice
stephengold Feb 26, 2021
7b00c50
main.yml: enable workflow for the new "gsw" branch
stephengold Feb 27, 2021
346ced7
make JBullet the default for jme3-examples (instead of native Bullet)
stephengold Feb 27, 2021
671a90b
eliminate native Bullet from build scripts
stephengold Feb 27, 2021
b5f53f3
delete the glue code for native Bullet
stephengold Feb 27, 2021
b58c6d0
delete makefiles for jme3-bullet-native-android
stephengold Feb 27, 2021
a9332fd
delete Java sourcecode associated with native Bullet
stephengold Feb 27, 2021
fc8128c
[skip ci] update natives snapshot
Feb 27, 2021
eb59aed
iOS gl3 and some improvements (#1473)
joliver82 Mar 11, 2021
13f7921
[skip ci] update natives snapshot
Mar 11, 2021
27ee6e4
TerrainQuad: serialize "patchSize" field. (#1476)
Ali-RS Mar 11, 2021
bb6cc88
[skip ci] update natives snapshot
Mar 11, 2021
bcb73a9
bugfix: "Deploy natives snapshot" step always detects native changes
stephengold Mar 11, 2021
e1c5489
main.yml: correct bash syntax error
stephengold Mar 11, 2021
0a81a61
main.yml: deploy each new natives snapshot to the MinIO instance
stephengold Mar 11, 2021
c86e668
create a new natives snapshot, to test uploading to the MinIO instance
stephengold Mar 11, 2021
ecdf8d6
main.yml: correct name of MinIO bucket
stephengold Mar 12, 2021
b15fa50
[skip ci] update natives snapshot
Mar 12, 2021
efcad1c
gradle.properties: download natives snapshots from the MinIO instance
stephengold Mar 12, 2021
caedc2b
main.yml: don't deploy natives snapshots to Bintray
stephengold Mar 12, 2021
5153c1a
create a new natives snapshot, to test NOT uploading to Bintray
stephengold Mar 12, 2021
eae4de1
[skip ci] update natives snapshot
Mar 12, 2021
202b315
bintray.sh: specify --quiet when using the "wget" command
stephengold Mar 12, 2021
cdb1641
common.gradle: add and configure maven-publish and signing plugins
stephengold Mar 12, 2021
2272bce
main.yml: sign Maven artifacts if possible
stephengold Mar 12, 2021
db06d14
main.yml: deploy the artifacts from each release to Sonatype
stephengold Mar 13, 2021
013aa15
bugfix: published POMs lack documentation
stephengold Mar 13, 2021
8bc22cb
bugfix: artifacts for Sonatype deployment aren't signed
stephengold Mar 13, 2021
8c4d523
Android native sound fix and update openal-soft to 1.21.1 (#1475)
joliver82 Mar 13, 2021
db24141
[skip ci] update natives snapshot
Mar 13, 2021
cf10451
Fix issue #1477 (assertion fails for createIndexBuffer(0, 0)) (#1479)
Ali-RS Mar 14, 2021
4fdee8f
resolve issue #1447 (no setter for EnvironmentCamera background color…
stephengold Mar 15, 2021
d653d6b
main.yml: remove trailing whitespace
stephengold Mar 15, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 14 additions & 50 deletions .github/actions/tools/bintray.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,59 +35,23 @@ function bintray_createPackage {
fi
}

# uploadFile file destination [REPO] "content" [PACKAGE] [USER] [PASSWORD] [SRCREPO] [LICENSE]
function bintray_uploadFile {
# minio_uploadFile <LOCAL_FILEPATH> <REMOTE_FILEPATH> <MINIO_URL> <MINIO_ACCESS_KEY> <MINIO_SECRET_KEY>
#
# Upload the specified file to the specified MinIO instance.
function minio_uploadFile {
file="$1"
dest="$2"

echo "Upload $file to $dest"
url="$3"
access="$4"
secret="$5"

repo="$3"
type="$4"
package="$5"
echo "Install MinIO client"
wget --quiet https://dl.min.io/client/mc/release/linux-amd64/mc
chmod +x ./mc

user="$6"
password="$7"

srcrepo="$8"
license="$9"
publish="${10}"
echo "Add an alias for the MinIO instance to the MinIO configuration file"
./mc alias set objects "$url" "$access" "$secret"

bintray_createPackage $repo $package $user $password $srcrepo $license

url="https://api.bintray.com/$type/$repo/$package/$dest"
if [ "$publish" = "true" ]; then url="$url;publish=1"; fi

curl -T "$file" -u$user:$password "$url"

}

function bintray_uploadAll {
path="$1"
destpath="$2"
repo="$3"
type="$4"
package="$5"

user="$6"
password="$7"

srcrepo="$8"
license="$9"
publish="${10}"

cdir="$PWD"
cd "$path"

files="`find . -type f -print`"
IFS="
"
set -f
for f in $files; do
destfile="$destpath/${f:2}"
bintray_uploadFile $f $destfile $repo $type $package $user $password $srcrepo $license $publish
done
set +f
unset IFS
cd "$cdir"
echo "Upload $file to $url/$dest"
./mc cp "$file" "objects/$dest"
}
Loading