forked from cerc-io/stack-orchestrator
Initial implementation
This commit is contained in:
Executable
+3
@@ -0,0 +1,3 @@
|
||||
# Builds the shiv "package" for distribution
|
||||
./scripts/update_version_file.sh
|
||||
shiv -c laconic-so -o package/laconic-so .
|
||||
Executable
+8
@@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
|
||||
python3 -m venv venv
|
||||
source ./venv/bin/activate
|
||||
pip install --editable .
|
||||
pip install shiv
|
||||
shiv -c laconic-so -o laconic-so .
|
||||
./laconic-so --verbose --local-stack setup-repositories
|
||||
Executable
+3
@@ -0,0 +1,3 @@
|
||||
version_file_name=./app/data/version.txt
|
||||
echo "# This file should be re-generated running: scripts/update-version-file.sh script" > $version_file_name
|
||||
echo $( git describe --tags --abbrev=0 ; git rev-parse --short HEAD ) >> $version_file_name
|
||||
Reference in New Issue
Block a user