Skip to content

Commit acbdd70

Browse files
committed
- Move style checks to tools/StyleChecks
- delete jenkins folder
1 parent c97320d commit acbdd70

10 files changed

Lines changed: 5 additions & 189 deletions

File tree

jenkins/buildone.cmd

Lines changed: 0 additions & 61 deletions
This file was deleted.

jenkins/get_system_info.sh

Lines changed: 0 additions & 74 deletions
This file was deleted.

jenkins/testone.cmd

Lines changed: 0 additions & 51 deletions
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ fi
1515

1616
ERRFILE=check_ascii.sh.err
1717
rm -f $ERRFILE
18-
git diff --name-only `git merge-base origin/master HEAD` HEAD | grep -v -E "test/.*|tools/.*|Build/.*|/*.md|/*.txt|/*.vcxproj" | xargs -I % ./jenkins/check_file_ascii.sh %
18+
git diff --name-only `git merge-base origin/master HEAD` HEAD | grep -v -E "test/.*|tools/.*|Build/.*|/*.md|/*.txt|/*.vcxproj" | xargs -I % ./tools/StyleChecks/check_file_ascii.sh %
1919

2020
if [ -e $ERRFILE ]; then # if error file exists then there were errors
2121
>&2 echo "--------------" # leading >&2 means echo to stderr
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ git diff --name-only `git merge-base origin/master HEAD` HEAD |
5252
grep -v -E 'pal/.*' |
5353
grep -v -E 'libChakraCoreLib.version|ch.version' |
5454
grep -v -E 'lib/Backend/CRC.h' |
55-
xargs -I % sh -c "echo 'Check Copyright > Checking %'; python jenkins/check_copyright.py % > $ERRFILETEMP || cat $ERRFILETEMP >> $ERRFILE"
55+
xargs -I % sh -c "echo 'Check Copyright > Checking %'; python tools/StyleChecks/check_copyright.py % > $ERRFILETEMP || cat $ERRFILETEMP >> $ERRFILE"
5656

5757
rm -f $ERRFILETEMP
5858

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ fi
1616
ERRFILE=check_eol.sh.err
1717
rm -f $ERRFILE
1818

19-
git diff --name-only `git merge-base origin/master HEAD` HEAD | grep -v -E "(test/.*\\.js|\\.cmd|\\.baseline|\\.wasm|\\.wast|\\.vcxproj|\\.vcproj|\\.sln|\\.man)" | xargs -I % ./jenkins/check_file_eol.sh %
19+
git diff --name-only `git merge-base origin/master HEAD` HEAD | grep -v -E "(test/.*\\.js|\\.cmd|\\.baseline|\\.wasm|\\.wast|\\.vcxproj|\\.vcproj|\\.sln|\\.man)" | xargs -I % ./tools/StyleChecks/check_file_eol.sh %
2020

2121
if [ -e $ERRFILE ]; then # if error file exists then there were errors
2222
>&2 echo "--------------" # leading >&2 means echo to stderr
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#-------------------------------------------------------------------------------------------------------
22
# Copyright (C) Microsoft. All rights reserved.
3+
# Copyright (c) 2021 ChakraCore Project Contributors. All rights reserved.
34
# Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
45
#-------------------------------------------------------------------------------------------------------
56

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#-------------------------------------------------------------------------------------------------------
22
# Copyright (C) Microsoft. All rights reserved.
3+
# Copyright (c) 2021 ChakraCore Project Contributors. All rights reserved.
34
# Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
45
#-------------------------------------------------------------------------------------------------------
56

0 commit comments

Comments
 (0)