File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Change Log
22All notable changes to this project will be documented in this file.
33
4+ ## [ csw-c v3.0.0-RC1] - 2020-12-01
5+
6+ ### Changed
7+
8+ - Updated test version to CSW-3.0.0-RC1
9+
410## [ csw-c v3.0.0-M1] - 2020-09-29
511
612### Changed
Original file line number Diff line number Diff line change 33# Script that starts the CSW services, compiles and runs the test assembly and then runs the C based tests.
44# Assumes that csw-services.sh and sbt are all in your shell path.
55
6+ CSW_VERSION=3.0.0-RC1
67logfile=test.log
7- if ! hash csw-services.sh 2> /dev/null ; then
8- echo >&2 " Please install csw-services.sh (from csw sources or download csw-apps zip from csw GitHub release). Aborting."
8+ if ! hash csw-services 2> /dev/null ; then
9+ echo >&2 " Please install csw-services (run: cs install csw-services $CSW_VERSION ). Aborting."
10+ exit 1
11+ fi
12+ csw_services_version=` csw-services --help | grep Main | sed -e ' s/Main //' `
13+ if test " $csw_services_version " ! = " $CSW_VERSION " ; then
14+ echo >&2 " CSW services version $csw_services_version != $CSW_VERSION : Please install csw-services (run: cs install csw-services $CSW_VERSION ). Aborting."
915 exit 1
1016fi
1117set -v
12- csw-services.sh --version v3.0.0-M1 start -e > $logfile 2>&1 &
13- # csw-services.sh start -e > $logfile 2>&1 &
18+ csw-services start -e > $logfile 2>&1 &
19+ cswServicesPid= $!
1420cd testSupport || exit 1
1521sbt stage >> $logfile 2>&1
1622test-deploy/target/universal/stage/bin/test-container-cmd-app --local test-deploy/src/main/resources/TestContainer.conf >> $logfile 2>&1 &
@@ -21,4 +27,5 @@ sleep 30
2127# Run the C based tests
2228../build/test/testPublisher
2329kill $assemblyPid
24- csw-services.sh stop >> $logfile 2>&1
30+ # csw-services stop >> $logfile 2>&1
31+ kill $cswServicesPid
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ object AkkaHttp {
1616}
1717
1818object CSW {
19- val Version = " 3.0.0-M1 "
19+ val Version = " 3.0.0-RC1 "
2020// val Version = "0.1.0-SNAPSHOT"
2121
2222 val `csw-framework` = " com.github.tmtsoftware.csw" %% " csw-framework" % Version
You can’t perform that action at this time.
0 commit comments