Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Vladishev <aleksander.vladishev@zabbix.com>2022-05-25 20:18:35 +0300
committerAlexander Vladishev <aleksander.vladishev@zabbix.com>2022-05-25 20:18:35 +0300
commit6a881e5f191afe4828ae9d7840392a12625bcb7d (patch)
treec1377ad9da40294c58740def4ee55a6073cab53c /.github
parent76a3f65d98ef1e738137e7a2783c43c0c237b4bb (diff)
.......... [ZBXNEXT-686] updated SonarCloud configuration files
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/sonarcloud-others.yml27
-rw-r--r--.github/workflows/sonarcloud.yml40
2 files changed, 48 insertions, 19 deletions
diff --git a/.github/workflows/sonarcloud-others.yml b/.github/workflows/sonarcloud-others.yml
new file mode 100644
index 00000000000..f1b1479ef4f
--- /dev/null
+++ b/.github/workflows/sonarcloud-others.yml
@@ -0,0 +1,27 @@
+name: SonarCloud Others Build
+
+on:
+ push:
+ branches:
+ - 'master'
+ - 'release/*'
+ pull_request:
+ types: [opened, synchronize, reopened]
+
+jobs:
+ SonarCloud-others:
+ name: SonarCloud-others
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
+ - name: SonarCloud Scan
+ uses: SonarSource/sonarcloud-github-action@master
+ with:
+ args: >
+ -Dsonar.sources=ui/
+ -Dsonar.test.exclusions=ui/tests/
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
+ SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml
index dc1e9086d74..477445f0e25 100644
--- a/.github/workflows/sonarcloud.yml
+++ b/.github/workflows/sonarcloud.yml
@@ -1,12 +1,11 @@
-name: SonarCloud Build
+name: SonarCloud C Build
on:
push:
branches:
- - master
- - release/*
- pull_request:
- types: [opened, synchronize, reopened]
+ - 'master'
+ - 'release/*'
+
jobs:
SonarCloud-C:
@@ -15,15 +14,18 @@ jobs:
env:
SONAR_SCANNER_VERSION: 4.7.0.2747
SONAR_SERVER_URL: "https://sonarcloud.io"
- BUILD_WRAPPER_OUT_DIR: $HOME/.sonar/build_wrapper_output_directory # Directory where build-wrapper output will be placed
+ BUILD_WRAPPER_OUT_DIR: $GITHUB_WORKSPACE/build_wrapper_output_directory # Directory where build-wrapper output will be placed
steps:
+
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
+
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
+
- name: Download and set up sonar-scanner
env:
SONAR_SCANNER_DOWNLOAD_URL: https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-${{ env.SONAR_SCANNER_VERSION }}-linux.zip
@@ -32,6 +34,17 @@ jobs:
curl -sSLo $HOME/.sonar/sonar-scanner.zip ${{ env.SONAR_SCANNER_DOWNLOAD_URL }}
unzip -o $HOME/.sonar/sonar-scanner.zip -d $HOME/.sonar/
echo "$HOME/.sonar/sonar-scanner-${{ env.SONAR_SCANNER_VERSION }}-linux/bin" >> $GITHUB_PATH
+
+
+ - name: Download and compile Zabbix
+ run: |
+ sudo apt-get install libsnmp-dev snmp libopenipmi-dev libevent-dev libcurl4-openssl-dev
+ cd $GITHUB_WORKSPACE
+ sh bootstrap.sh
+ ./configure --enable-server --enable-agent --with-postgresql --enable-ipv6 --with-net-snmp --with-libcurl --with-libxml2 --with-openipmi --enable-proxy --enable-agent2 --enable-java --prefix=$(pwd) --with-openssl
+ make
+ make clean
+
- name: Download and set up build-wrapper
env:
BUILD_WRAPPER_DOWNLOAD_URL: ${{ env.SONAR_SERVER_URL }}/static/cpp/build-wrapper-linux-x86.zip
@@ -39,25 +52,14 @@ jobs:
curl -sSLo $HOME/.sonar/build-wrapper-linux-x86.zip ${{ env.BUILD_WRAPPER_DOWNLOAD_URL }}
unzip -o $HOME/.sonar/build-wrapper-linux-x86.zip -d $HOME/.sonar/
echo "$HOME/.sonar/build-wrapper-linux-x86" >> $GITHUB_PATH
+
- name: Run build-wrapper
run: |
build-wrapper-linux-x86-64 --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} make clean all
+
- name: Run sonar-scanner
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: |
sonar-scanner --define sonar.host.url="${{ env.SONAR_SERVER_URL }}" --define sonar.cfamily.build-wrapper-output="${{ env.BUILD_WRAPPER_OUT_DIR }}"
-
- SonarCloud-other:
- name: SonarCloud-other
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- with:
- fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- - name: SonarCloud Scan
- uses: SonarSource/sonarcloud-github-action@master
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
- SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}