From 4610968193df10af12c91f699fec39aeb3ef703a Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Sat, 10 Jul 2021 03:10:43 -0400 Subject: Made the "try" macro into a common one, instead of a host-specific one. --- stdlib/commands.md | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 stdlib/commands.md (limited to 'stdlib/commands.md') diff --git a/stdlib/commands.md b/stdlib/commands.md new file mode 100644 index 000000000..29af59778 --- /dev/null +++ b/stdlib/commands.md @@ -0,0 +1,54 @@ +# Standard Library + +## Test + +``` +cd ~/lux/stdlib/ \ +&& lein clean \ +&& lein with-profile bibliotheca lux auto test +``` + +## Deploy + +``` +cd ~/lux/stdlib/ && lein install + +cd ~/lux/stdlib/ && mvn install:install-file -Dfile=target/library.tar -DgroupId=com.github.luxlang -DartifactId=stdlib -Dversion=0.6.0-SNAPSHOT -Dpackaging=tar + +cd ~/lux/stdlib/ && mvn deploy:deploy-file \ +-Durl=https://:@oss.sonatype.org/content/repositories/snapshots/ \ +-Dfile=target/library.tar \ +-DgroupId=com.github.luxlang \ +-DartifactId=stdlib \ +-Dversion=0.6.0-SNAPSHOT \ +-Dpackaging=tar +``` + +## Generate documentation + +``` +cd ~/lux/stdlib/ \ +&& lein clean \ +&& lein with-profile scriptum lux auto build +``` + +--- + +# Aedifex: Build system + +## Build + +``` +cd ~/lux/stdlib/ \ +&& lein clean \ +&& lein with-profile aedifex lux auto build +``` + +## Test + +``` +cd ~/lux/stdlib/ \ +&& lein clean \ +&& lein with-profile aedifex lux auto test +``` + -- cgit v1.2.3