From c61a121914dd69cd7454aee6fc26fbff1e21850e Mon Sep 17 00:00:00 2001 From: Yuan Zhou Date: Tue, 11 Jun 2024 20:59:32 +0800 Subject: [PATCH] [MISC] adding discussion link in issue template Signed-off-by: Yuan Zhou --- .github/ISSUE_TEMPLATE/config.yml | 20 ++++++++++++++++++++ dev/info.sh | 1 + 2 files changed, 21 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000000..545ccc8c21d7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You 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. + +blank_issues_enabled: false +contact_links: + - name: Gluten Discussions + url: https://github.com/apache/incubator-gluten/discussions + about: Ask questions or discuss new feature ideas here. diff --git a/dev/info.sh b/dev/info.sh index ed0e0a8dd390..8a5fbd182f84 100644 --- a/dev/info.sh +++ b/dev/info.sh @@ -38,6 +38,7 @@ Commit: $(git rev-parse HEAD 2> /dev/null || echo "Not in a git repo.") CMake Version: $(cmake --version | grep -oE '[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+') System: $(print_info 'CMAKE_SYSTEM "') Arch: $(print_info 'CMAKE_SYSTEM_PROCESSOR') +CPU Name: $(lscpu | grep 'Model name') C++ Compiler: $(print_info 'CMAKE_CXX_COMPILER ==') C++ Compiler Version: $(print_info 'CMAKE_CXX_COMPILER_VERSION') C Compiler: $(print_info 'CMAKE_C_COMPILER ==')