Skip to content

Commit 510b5fa

Browse files
committed
update er to v0.3.0
1 parent 45cc856 commit 510b5fa

File tree

2 files changed

+15
-14
lines changed

2 files changed

+15
-14
lines changed

bootstrap.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ popd
163163

164164
pushd AXL
165165
if [ $build_dev -eq 0 ] ; then
166-
git checkout v0.6.0
166+
git checkout v0.7.0
167167
fi
168168
rm -rf build
169169
mkdir -p build
@@ -266,7 +266,7 @@ popd
266266

267267
pushd er
268268
if [ $build_dev -eq 0 ] ; then
269-
git checkout v0.2.0
269+
git checkout v0.3.0
270270
fi
271271
rm -rf build
272272
mkdir -p build

dist/builddist

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
#!/bin/bash
22

3+
SCRTAG="v3.0.1"
4+
35
print_usage() {
46
echo "Usage: builddist <tag>"
57
echo ""
68
echo "Tags:"
79
echo " develop - build tarball of latest"
810
# echo " v3.0rc1"
911
# echo " v3.0rc2"
10-
echo " v3.0"
12+
echo " v3.0.1"
1113
}
1214

1315
# check that we got an argument or print usage
@@ -29,7 +31,7 @@ if [ "$1" == "develop" ] ; then
2931
"redset" "ecp-veloc" "main"
3032
"er" "ecp-veloc" "main"
3133
"rankstr" "ecp-veloc" "main"
32-
"scr" "llnl" "develop"
34+
"scr" "llnl" "v3"
3335
)
3436
#elif [ "$1" == "v3.0rc1" ] ; then
3537
# # to build the scr-v3.0rc1 release
@@ -59,19 +61,19 @@ if [ "$1" == "develop" ] ; then
5961
# "rankstr" "ecp-veloc" "v0.1.0"
6062
# "scr" "llnl" "v3.0rc2"
6163
# )
62-
elif [ "$1" == "v3.0" ] ; then
64+
elif [ "$1" == "v3.0.1" ] ; then
6365
# to build the scr-v3.0 release
6466
ORGS=(
6567
"lwgrp" "llnl" "v1.0.5"
6668
"dtcmp" "llnl" "v1.1.4"
6769
"kvtree" "ecp-veloc" "v1.3.0"
68-
"axl" "ecp-veloc" "v0.6.0"
70+
"axl" "ecp-veloc" "v0.7.0"
6971
"spath" "ecp-veloc" "v0.2.0"
7072
"shuffile" "ecp-veloc" "v0.2.0"
7173
"redset" "ecp-veloc" "v0.2.0"
72-
"er" "ecp-veloc" "v0.2.0"
74+
"er" "ecp-veloc" "v0.3.0"
7375
"rankstr" "ecp-veloc" "v0.2.0"
74-
"scr" "llnl" "v3.0"
76+
"scr" "llnl" "v3"
7577
)
7678
else
7779
echo "Error: unknown tag: $1"
@@ -134,18 +136,17 @@ for (( i=0; i<${len}; i=$(($i + 3)) )); do
134136
cd ..
135137
done
136138

137-
# NOTE: last TAG is from SCR
138-
# rename archive directory to scr-TAG
139-
mv $ARCH_DIR scr-$TAG
139+
# rename archive directory to scr-SCRTAG
140+
mv $ARCH_DIR scr-$SCRTAG
140141

141142
# copy in top-level CMake files
142-
cp -r ../CMakeLists.txt ../NOTICE ../cmake scr-$TAG
143+
cp -r ../CMakeLists.txt ../NOTICE ../cmake scr-$SCRTAG
143144

144145
# copy in README file
145-
cp -r ../README.dist scr-$TAG/README
146+
cp -r ../README.dist scr-$SCRTAG/README
146147

147148
# zip up release tarball
148-
tar -czf ../scr-${TAG}.tgz scr-$TAG
149+
tar -czf ../scr-${SCRTAG}.tgz scr-$SCRTAG
149150

150151
# delete prep directory
151152
cd ..

0 commit comments

Comments
 (0)