-
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 #15 from simonkowallik/ihac-4.0
iHAC 4.0
- Loading branch information
Showing
33 changed files
with
954 additions
and
736 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 |
---|---|---|
@@ -1,29 +1,14 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto | ||
|
||
# Custom for Visual Studio | ||
*.cs diff=csharp | ||
*.sln merge=union | ||
*.csproj merge=union | ||
*.vbproj merge=union | ||
*.fsproj merge=union | ||
*.dbproj merge=union | ||
|
||
# Standard to msysgit | ||
*.doc diff=astextplain | ||
*.DOC diff=astextplain | ||
*.docx diff=astextplain | ||
*.DOCX diff=astextplain | ||
*.dot diff=astextplain | ||
*.DOT diff=astextplain | ||
*.pdf diff=astextplain | ||
*.PDF diff=astextplain | ||
*.rtf diff=astextplain | ||
*.RTF diff=astextplain | ||
|
||
/README.md export-ignore | ||
/tests export-ignore | ||
/.travis.yml export-ignore | ||
/.gitattributes export-ignore | ||
/.gitignore export-ignore | ||
/.github export-ignore | ||
/demo.svg export-ignore | ||
/CHANGELOG.md export-ignore | ||
/LICENSE export-ignore | ||
/_config.yml export-ignore | ||
/cliff.toml export-ignore |
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,47 @@ | ||
name: ci-tests | ||
|
||
on: | ||
push: | ||
schedule: | ||
- cron: '39 9 * * 4' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test-on-ubuntu: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: install requirements | ||
run: sudo apt install -y perl libxml-simple-perl libxml2-utils | ||
- name: checkout git repo | ||
uses: actions/checkout@v3 | ||
#- name: authV1 | ||
# env: | ||
# GH_ACTIONS_IHAC_CREDENTIALS: ${{ secrets.GH_ACTIONS_IHAC_CREDENTIALS }} | ||
# run: ./tests/test_authV1.sh | ||
- name: auth | ||
env: | ||
GH_ACTIONS_IHAC_CREDENTIALSV2: ${{ secrets.GH_ACTIONS_IHAC_CREDENTIALSV2 }} | ||
run: ./tests/test_auth.sh | ||
- name: setup tests | ||
run: ./tests/test_setup.sh | ||
- name: fileget | ||
run: ./tests/test_fileget.sh | ||
- name: filelist | ||
run: ./tests/test_filelist.sh | ||
- name: commandlist | ||
run: ./tests/test_commandlist.sh | ||
- name: commandrun | ||
run: ./tests/test_commandrun.sh | ||
- name: diagnostics | ||
run: ./tests/test_diagnostics.sh | ||
- name: qkviewmetadata | ||
run: ./tests/test_qkviewmetadata.sh | ||
- name: qkviewdelete | ||
run: ./tests/test_qkviewdelete.sh | ||
# bigiq | ||
- name: fileget bigiq | ||
run: ./tests/test_fileget_bigiq.sh | ||
- name: diagnostics bigiq | ||
run: ./tests/test_diagnostics_bigiq.sh | ||
- name: qkviewdelete bigiq | ||
run: ./tests/test_qkviewdelete_bigiq.sh |
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 |
---|---|---|
@@ -1,36 +1,5 @@ | ||
# Windows image file caches | ||
Thumbs.db | ||
ehthumbs.db | ||
|
||
# Folder config file | ||
Desktop.ini | ||
|
||
# Recycle Bin used on file shares | ||
$RECYCLE.BIN/ | ||
|
||
# Windows Installer files | ||
*.cab | ||
*.msi | ||
*.msm | ||
*.msp | ||
|
||
# ========================= | ||
# Operating System Files | ||
# ========================= | ||
|
||
# OSX | ||
# ========================= | ||
|
||
.vscode/ | ||
.idea | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
|
||
# Icon must ends with two \r. | ||
Icon | ||
|
||
# Thumbnails | ||
._* | ||
|
||
# Files that might appear on external disk | ||
.Spotlight-V100 | ||
.Trashes |
This file was deleted.
Oops, something went wrong.
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,24 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
## [unreleased] | ||
|
||
### Bug Fixes | ||
|
||
- Logon error detection for new api | ||
|
||
### Documentation | ||
|
||
- README update, new shields, how to install | ||
|
||
### Ci | ||
|
||
- Git specific files modified | ||
- First github actions setup, removes travis | ||
- Updated workflow and tests | ||
- Updated test_login | ||
- Updated workflow, install iHAC requirements | ||
- Add scheduled ci runs | ||
|
||
<!-- generated by git-cliff --> |
Oops, something went wrong.