[CBRD-25531] When an analytic function is included in a non-mergeable inline view, unreferenced select list items are not removed #9735
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# | |
# Copyright 2016 CUBRID Corporation | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
# | |
name: github-checks | |
on: | |
pull_request: | |
branches: | |
- develop | |
- 'release/11.**' | |
- 'feature/**' | |
jobs: | |
license: | |
name: license | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: jitterbit/get-changed-files@v1 | |
id: files | |
continue-on-error: true | |
- name: Check license | |
run: | | |
set +e # make this step proceed even if a command returns non-zero | |
license_headers=.github/workflows/license_headers | |
result="PASS" | |
for f in ${{ steps.files.outputs.added_modified }}; do | |
if [ -d "$f" ]; then | |
continue | |
fi | |
ext=$(expr $f : ".*\(\..*\)") | |
case $ext in | |
.c|.h|.cpp|.hpp|.C|.H|.CPP|.HPP|.ipp|.sh|.bat|.y|.l|.msg) true;; # only these formats are checked. | |
*) continue ;; # skip others | |
esac | |
# the license_check_ignore_files.txt file was created using the following grep command. | |
# | |
# grep -r | |
# --exclude-dir={contrib,cubrid-cci,win} | |
# --include={*.c,*.h,*.cpp,*.hpp,*.C,*.H,*.CPP,*.HPP,*.ipp,*.sh,*.bat,*.y,*.l,*.msg} | |
# -L "Apache License" | |
# * > .github/workflows/license_headers/license_check_ignore_files.txt | |
# | |
if grep "$f" "$license_headers"/license_check_ignore_files.txt > /dev/null; then | |
continue | |
fi | |
result_for_f="FAIL" | |
for header in `find $license_headers -type f`; do | |
line_cnt=`wc -l < $header` | |
head -n $line_cnt $f | diff -w - $header 2>&1 1>/dev/null | |
if [ $? -eq 0 ]; then | |
result_for_f="PASS" | |
break | |
fi | |
done | |
echo "$f: $result_for_f" | |
if [ "$result_for_f" = "FAIL" ]; then | |
result="FAIL" | |
fi | |
done | |
test $result = "PASS" # if non-zero, fail | |
pr-style: | |
name: pr-style | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: deepakputhraya/action-pr-title@master | |
with: | |
regex: '^\[[A-Z]+-\d+\]\s.+' # Regex the title should match. | |
code-style: | |
name: code-style | |
runs-on: ubuntu-20.04 | |
env: | |
working-directory: .github/workflows | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install packages | |
run: | | |
# dependencies to build GNU indent | |
sudo apt-get -yq install build-essential texi2html wget | |
# install astyle | |
sudo apt-get -yq install astyle | |
# indent 2.2.11, the lastest version (2.2.12) make a different result | |
wget https://ftp.gnu.org/gnu/indent/indent-2.2.11.tar.gz | |
tar xf indent-2.2.11.tar.gz | |
cd indent-2.2.11 | |
./configure | |
sudo make -j install | |
cd .. | |
# download google-java-format-1.7-all-deps.jar | |
wget https://github.com/google/google-java-format/releases/download/google-java-format-1.7/google-java-format-1.7-all-deps.jar | |
working-directory: ${{ env.working-directory }} | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt' | |
java-version: '8' | |
- id: files | |
uses: jitterbit/get-changed-files@v1 | |
continue-on-error: true | |
- name: Check code style | |
id: stylecheck | |
run: | | |
for f in ${{ steps.files.outputs.added_modified }}; do | |
.github/workflows/codestyle.sh ${f} | |
done | |
git diff | tee gitdiff | |
test ! -s gitdiff # is empty? yes: 0 no: 1 | |
- name: Suggest code changes | |
if: ${{ failure() }} | |
uses: reviewdog/action-suggester@v1 | |
with: | |
tool_name: code-style (indent, astyle, google-java-format) | |
cppcheck: | |
name: cppcheck | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Install packages | |
run: | | |
sudo apt-get install -yq wget build-essential | |
# Download cppcheck-2.4.1 source | |
wd=`pwd` | |
cd .. | |
wget https://github.com/danmar/cppcheck/archive/2.4.1.tar.gz | |
tar xf 2.4.1.tar.gz | |
# build cppcheck-2.4.1 | |
cd cppcheck-2.4.1 | |
make -j4 SRCDIR=build CFGDIR=cfg CXXFLAGS="-O2 -DNDEBUG -Wall -Wno-sign-compare -Wno-unused-function" | |
echo "CPPCHECK_PATH=`pwd`" >> $GITHUB_ENV | |
cd $wd | |
- uses: actions/checkout@v2 | |
- uses: jitterbit/get-changed-files@v1 | |
id: files | |
continue-on-error: true | |
- name: cppcheck | |
run: | | |
result_file="cppcheck.result" | |
summary_file="cppcheck.summary" | |
touch $result_file | |
touch $summary_file | |
# to suppress other error, add it to .github/workflows/cppcheck-spr-list | |
for f in ${{ steps.files.outputs.added_modified }}; do | |
if [ -d "$f" ]; then | |
continue | |
fi | |
set +e | |
ext=$(expr $f : ".*\(\..*\)") | |
set -e | |
case $ext in | |
.c|.h|.cpp|.hpp|.C|.H|.CPP|.HPP) true;; # only these formats are checked. | |
*) continue ;; # skip others | |
esac | |
# cppcheck can use the -i option to ignore files in a specified directory like -iheaplayers. | |
# However, this option may not work correctly for files like malloc_2_8_3.c that are included in lea_heap.c. | |
# So, make sure cppcheck does not check any files under the src/heaplayers directory. | |
if [[ $f =~ ^src/heaplayers/.* ]]; then | |
continue | |
fi | |
${{ env.CPPCHECK_PATH }}/cppcheck --force -j4 --inline-suppr --suppressions-list=.github/workflows/cppcheck-spr-list --quiet --enable=warning $f 2>>$result_file | |
done | |
echo "errors: `cat $result_file | grep " error: " | wc -l`" > $summary_file | |
echo "warnings: `cat $result_file | grep " warning: " | wc -l`" >> $summary_file | |
echo "-----------------------------Result-------------------------------------" | |
cat $result_file | |
echo "-----------------------------Summary------------------------------------" | |
cat $summary_file | |
! cat $result_file | grep " error: " 1>/dev/null # if has errors, fail | |
- name: Get cppcheck.summary | |
id: get-comment-body | |
if: ${{ failure() }} | |
run: | | |
body=$(cat cppcheck.summary) | |
body="${body//'%'/'%25'}" | |
body="${body//$'\n'/'%0A'}" | |
body="${body//$'\r'/'%0D'}" | |
echo ::set-output name=body::$body | |
- name: Report cppcheck.summary | |
if: ${{ failure() }} | |
uses: unsplash/comment-on-pr@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
check_for_duplicate_msg: true # OPTIONAL | |
msg: | | |
**cppcheck** | |
${{ steps.get-comment-body.outputs.body }} | |
memory-monitor-check: | |
name: memory-monitor-check | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: jitterbit/get-changed-files@v1 | |
id: files | |
continue-on-error: true | |
- name: Check memory header include | |
run: | | |
set +e # make this step proceed even if a command returns non-zero | |
memory_header_include=.github/workflows/memory_header_include | |
result="PASS" | |
for f in ${{ steps.files.outputs.added_modified }}; do | |
if [ -d "$f" ]; then | |
continue | |
fi | |
ext=$(expr $f : ".*\(\..*\)") | |
case $ext in | |
.c|.cpp|.C|.CPP) true;; # only these formats are checked. | |
*) continue ;; # skip others | |
esac | |
result_for_f="FAIL" | |
for header in `find $memory_header_include -type f`; do | |
cat $f | grep "#include" | grep "memory_wrapper.hpp" | diff -w - $header 2>&1 1>/dev/null | |
if [ $? -eq 0 ]; then | |
result_for_f="PASS" | |
break | |
fi | |
done | |
# [exception case] lea_heap.c is third party code | |
if [ "$f" != "src/heaplayers/lea_heap.c" ]; then | |
last_include_line=$(cat $f | grep -n "^#include" | cut -d':' -f1 | tail -1) | |
wrapper_include_line=$(cat $f | grep -n "^#include" | grep "memory_wrapper.hpp" | cut -d':' -f1) | |
if [ "$last_include_line" != "$wrapper_include_line" ]; then | |
result_for_f="FAIL" | |
else # if equal, check warning comment | |
warning_comment=$(head -n $wrapper_include_line $f | tail -2 | head -1) | |
if [ "$warning_comment" != "// XXX: SHOULD BE THE LAST INCLUDE HEADER" ]; then | |
result_for_f="FAIL" | |
fi | |
fi | |
fi | |
# [exception case] memory_monitor_sr.cpp / memory_monitor_api.cpp is base file of memory monitoring module | |
if [ "$f" == "src/base/memory_monitor_sr.cpp" ] || [ "$f" == "src/base/memory_monitor_api.cpp" ]; then | |
result_for_f="PASS" | |
fi | |
filename=$(basename $f) | |
check_server_file=$(grep $filename cubrid/CMakeLists.txt) | |
if [ "$check_server_file" == "" ]; then | |
result_for_f="PASS" | |
fi | |
echo "$f: $result_for_f" | |
if [ "$result_for_f" = "FAIL" ]; then | |
result="FAIL" | |
echo "Error: .c/.cpp file in cubrid/CMakeLists.txt must include memory_wrapper.hpp with XXX comment" | |
fi | |
done | |
test $result = "PASS" # if non-zero, fail |