diff --git a/.scripts/0.1.1.sh b/.scripts/0.1.1.sh index fec1b22..829022b 100644 --- a/.scripts/0.1.1.sh +++ b/.scripts/0.1.1.sh @@ -19,7 +19,3 @@ post_build::create_distribution_directory post_build::copy_abi_libraries_to_project post_build::success - -docker::build -docker::run -docker::success \ No newline at end of file diff --git a/.scripts/functions.sh b/.scripts/functions.sh index b4077c1..3b671bb 100755 --- a/.scripts/functions.sh +++ b/.scripts/functions.sh @@ -138,25 +138,9 @@ post_build::copy_abi_libraries_to_project() { } post_build::success() { + log::success "▸ BUILD SUCCESSFUL!" log::success '' if [ $BUILD_CONFIG = "release" ]; then log::success "Built artifacts can be found at $DISTRIBUTION_DIRECTORY" fi } - -docker::build() { - log::message "Build Docker container" - cd $ROOT_DIRECTORY - docker build -t "finsig:Dockerfile" . -} - -docker::run() { - log::message "Build smoldotkotlin library" - docker run --rm -v `pwd`:/project finsig:Dockerfile bash -c 'cd /project; ./gradlew smoldotkotlin:bundleReleaseAar' -} - -docker::success() { - log::success "▸ BUILD SUCCESSFUL!" - log::success '' - log::success "AAR can be found at $ROOT_DIRECTORY/smoldotkotlin/build/outputs/aar" -} diff --git a/build_smoldotkotlin.sh b/build_staticlibs.sh similarity index 100% rename from build_smoldotkotlin.sh rename to build_staticlibs.sh