Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Another branch #1351

Closed
wants to merge 13 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 0 additions & 32 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

26 changes: 0 additions & 26 deletions .github/pull_request_template.md

This file was deleted.

78 changes: 0 additions & 78 deletions .github/scripts/setup_instance.sh

This file was deleted.

24 changes: 0 additions & 24 deletions .github/scripts/setup_kimchi_ubuntu.sh

This file was deleted.

55 changes: 0 additions & 55 deletions .github/workflows/CI.yml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build

on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- uses: sonarsource/sonarqube-scan-action@master
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
# If you wish to fail your job when the Quality Gate is red, uncomment the
# following lines. This would typically be used to fail a deployment.
# We do not recommend to use this in a pull request. Prefer using pull request
# decoration instead.
# - uses: sonarsource/sonarqube-quality-gate-action@master
# timeout-minutes: 5
# env:
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
*.pyc
*~
*.list
.scannerwork/*
i18n/mo/*
log
data
Expand Down
11 changes: 11 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
node {
stage('SCM') {
checkout scm
}
stage('SonarQube Analysis') {
def scannerHome = tool 'SonarScanner';
withSonarQubeEnv() {
sh "${scannerHome}/bin/sonar-scanner"
}
}
}
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ mapped user can get into the mount point.

There are a lof of ways to contribute to the Kimchi Project:

* Issues can be reported at [Github](https://github.com/kimchi-project/kimchi/issues)
* Issues can be reported at [GiHhub](https://github.com/kimchi-project/kimchi/issues)
* Patches are always welcome! Please, follow [these instructions](https://github.com/kimchi-project/kimchi/wiki/How-to-Contribute)
on how to send patches to the mailing list ([email protected]) or submit a pull request.

Expand Down
86 changes: 0 additions & 86 deletions iscsi.py

This file was deleted.

4 changes: 2 additions & 2 deletions kimchi.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ enable = True

[kimchi]
# Automatically create ISO pool on server start up
create_iso_pool = True
# create_iso_pool = True
# Toggles whether to take a screenshot for the web-interface
# Warning: Screenshots include a massive performance penalty
take_screenshot = True
# take_screenshot = True
Empty file removed requirements-FEDORA.txt
Empty file.
1 change: 0 additions & 1 deletion requirements-OPENSUSE-LEAP.txt

This file was deleted.

Empty file removed requirements-UBUNTU.txt
Empty file.
Loading