forked from quattor/template-library-os
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request quattor#107 from jouvin/add_ci_test
Add CI scripts from template-library-examples
- Loading branch information
Showing
4 changed files
with
85 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env bash | ||
set -e # halt script on error | ||
|
||
rm -f /tmp/indent.py | ||
wget -q https://raw.githubusercontent.com/stfc/Pan-Indenter/master/pan_indent_checker.py -O /tmp/indent.py | ||
chmod u+x /tmp/indent.py | ||
|
||
git diff --name-only --diff-filter=d HEAD^ | grep '\.pan$' | xargs -rn1 /tmp/indent.py check || exit 1 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env bash | ||
set -e # halt script on error | ||
|
||
rm -f /tmp/panlint.py | ||
wget -q https://raw.githubusercontent.com/quattor/pan/master/panc/src/main/scripts/panlint/panlint.py -O /tmp/panlint.py | ||
chmod u+x /tmp/panlint.py | ||
|
||
git diff --name-only --diff-filter=d HEAD^ | grep '\.pan$' | xargs -r /tmp/panlint.py || exit 1 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e # halt script on error | ||
|
||
echo GITHUB_REPOSITORY: ${GITHUB_REPOSITORY} | ||
echo GITHUB_BASE_REF: ${GITHUB_BASE_REF} | ||
echo GITHUB_WORKSPACE: ${GITHUB_WORKSPACE} | ||
|
||
# Retrieve last version of create-vanilla-SCDB from GitHub | ||
echo "Downloading create-vanilla-SCDB from GitHub..." | ||
rm -f /tmp/create-vanilla-SCDB.sh | ||
wget -q https://raw.githubusercontent.com/quattor/scdb/master/utils/scdb/create-vanilla-SCDB.sh -O /tmp/create-vanilla-SCDB.sh | ||
chmod u+x /tmp/create-vanilla-SCDB.sh | ||
|
||
/tmp/create-vanilla-SCDB.sh -F --continuous-integration HEAD |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: Run Tests | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
|
||
test-library: | ||
runs-on: ubuntu-latest | ||
container: ghcr.io/quattor/quattor-test-container:latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Install dependencies | ||
run: dnf -y install subversion | ||
- name: run tests | ||
run: .ci-scripts/test-library | ||
env: | ||
TRAVIS_BUILD_DIR: "$GITHUB_WORKSPACE" | ||
TRAVIS_REPO_SLUG: "$GITHUB_REPOSITORY" | ||
TRAVIS_BRANCH: "${GITHUB_HEAD_REF:-master}" | ||
|
||
panlint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
# we need the full repo or HEAD^ does not work | ||
fetch-depth: 0 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3 | ||
- name: Install dependencies | ||
run: pip install colorama prettytable six | ||
- name: run panlint | ||
run: .ci-scripts/panlint | ||
|
||
indentation: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
# we need the full repo or HEAD^ does not work | ||
fetch-depth: 0 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3 | ||
- name: Install dependencies | ||
run: pip install colorama | ||
- name: run indent checker | ||
run: .ci-scripts/indent |