Skip to content

Commit

Permalink
Merge pull request #15 from simonkowallik/ihac-4.0
Browse files Browse the repository at this point in the history
iHAC 4.0
  • Loading branch information
simonkowallik authored May 27, 2023
2 parents 08b6c67 + a029205 commit 0b4c306
Show file tree
Hide file tree
Showing 33 changed files with 954 additions and 736 deletions.
25 changes: 5 additions & 20 deletions .gitattributes
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
47 changes: 47 additions & 0 deletions .github/workflows/main.yml
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
35 changes: 2 additions & 33 deletions .gitignore
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
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

24 changes: 24 additions & 0 deletions CHANGELOG.md
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 -->
Loading

0 comments on commit 0b4c306

Please sign in to comment.