Skip to content

Commit 2c82bdb

Browse files
committed
MNEMONIC-175 Rename the build-tools directory to bin
1 parent 6a401d6 commit 2c82bdb

File tree

12 files changed

+14
-14
lines changed

12 files changed

+14
-14
lines changed
File renamed without changes.
File renamed without changes.

build-tools/mnemonic-checkstyle.xml renamed to bin/mnemonic-checkstyle.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,6 @@
164164
<module name="SuppressionCommentFilter"/>
165165

166166
<module name="SuppressionFilter">
167-
<property name="file" value="build-tools/suppressions.xml"/>
167+
<property name="file" value="bin/suppressions.xml"/>
168168
</module>
169169
</module>

build-tools/release.sh renamed to bin/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ rm -rf ${RELEASEBASENAME}/
105105
tar xzf target/${RELEASESRCPKGFULLNAME} || { echo "Failed to unpack the source artifact"; exit 80; }
106106
pushd ${RELEASEBASENAME} || { echo "Unpacked source directory does not exist"; exit 90; }
107107
mvn clean install || { echo "Failed to compile the packaged source artifact"; exit 100; }
108-
python build-tools/runTestCases.py || { echo "Failed to verify the packaged source artifact"; exit 110; }
108+
python bin/runTestCases.py || { echo "Failed to verify the packaged source artifact"; exit 110; }
109109
popd
110110
rm -rf ${RELEASEBASENAME}/
111111

build-tools/runTestCases.py renamed to bin/runTestCases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
if not os.path.exists(testLogDir):
2828
os.makedirs(testLogDir)
2929

30-
testCmdFile = 'build-tools/test.conf'
30+
testCmdFile = 'bin/test.conf'
3131
tcCmdReg = re.compile('^mvn\s.*$')
3232
tcNameReg = re.compile('-D(?:test|suites)=(.+?)\s')
3333
tcModuleReg = re.compile('-pl\s(.+?)\s')

build-tools/runall.sh renamed to bin/runall.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,6 @@ exit 1
8181
fi
8282
echo [SUCCESS] Mnemonic example is completed!
8383

84-
python build-tools/runTestCases.py
84+
python bin/runTestCases.py
8585

8686
popd

build-tools/source-assembly.xml renamed to bin/source-assembly.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@
270270
<include>DISCLAIMER*</include>
271271
<include>KEYS</include>
272272
<include>pom.xml</include>
273-
<include>build-tools/**</include>
273+
<include>bin/**</include>
274274
<include>docker/**</include>
275275
</includes>
276276
<useDefaultExcludes>true</useDefaultExcludes>
File renamed without changes.
File renamed without changes.

docker/docker-CentOS/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ RUN cd /ws && git clone https://github.com/apache/incubator-mnemonic.git && \
6565

6666
ENV MNEMONIC_HOME /ws/incubator-mnemonic
6767

68-
#RUN cd /ws/incubator-mnemonic && build-tools/runall.sh -y
68+
#RUN cd /ws/incubator-mnemonic && bin/runall.sh -y
6969

7070
WORKDIR /ws
7171
CMD ["bash"]

0 commit comments

Comments
 (0)