-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into documentation/notify_new_possible_errors
- Loading branch information
Showing
50 changed files
with
1,466 additions
and
808 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
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
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,71 @@ | ||
name: AC Ansible sanity | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- dev | ||
- staging* | ||
paths-ignore: | ||
- '**.tar.gz' | ||
- 'pycache/**' | ||
- '.ansible-lint' | ||
- 'cache/**' | ||
- '.DS_Store' | ||
- '.git/**' | ||
- '.github/**' | ||
- '.gitignore' | ||
- '.python-version' | ||
- '.pytest_cache/**' | ||
- '.vscode/**' | ||
- 'Jenkinsfile' | ||
- 'ac' | ||
- 'ansible.cfg' | ||
- 'changelogs/**' | ||
- 'collections/**' | ||
- 'docs/**' | ||
- 'scripts/**' | ||
- 'test_config.yml' | ||
- 'tests/*.ini' | ||
- 'tests/*.py' | ||
- 'tests/.pytest_cache' | ||
- 'tests/pycache' | ||
- 'tests/functional' | ||
- 'tests/helpers' | ||
- 'tests/requirements.txt' | ||
- 'tests/unit' | ||
- 'tests/sanity/ignore-*' | ||
- 'venv*' | ||
|
||
jobs: | ||
ansible-sanity: | ||
runs-on: ubuntu-latest | ||
env: | ||
branch: ${{ github.event.pull_request.head.ref }} | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.11 | ||
|
||
- name: Set up venv | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install virtualenv | ||
mkdir venv | ||
virtualenv venv/venv-2.16 | ||
- name: Install dependencies | ||
run: | | ||
source venv/venv-2.16/bin/activate | ||
python -m pip install --upgrade pip | ||
pip install ansible | ||
- name: Run ac-sanity | ||
run: | | ||
source venv/venv-2.16/bin/activate | ||
./ac --ac-build | ||
./ac --ac-sanity |
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,38 @@ | ||
name: AC Bandit | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- dev | ||
- staging* | ||
|
||
jobs: | ||
bandit: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.11 | ||
|
||
- name: Set up venv | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install virtualenv | ||
mkdir venv | ||
virtualenv venv/venv-2.16 | ||
- name: Install dependencies | ||
run: | | ||
source venv/venv-2.16/bin/activate | ||
python -m pip install --upgrade pip | ||
pip install bandit | ||
- name: Run ac-bandit | ||
run: | | ||
source venv/venv-2.16/bin/activate | ||
./ac --ac-bandit --level l |
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,40 @@ | ||
name: AC Galaxy Importer | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- dev | ||
- staging* | ||
|
||
jobs: | ||
galaxy-importer: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.11 | ||
|
||
- name: Set up venv | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install virtualenv | ||
mkdir venv | ||
virtualenv venv/venv-2.16 | ||
- name: Install dependencies | ||
run: | | ||
source venv/venv-2.16/bin/activate | ||
python -m pip install --upgrade pip | ||
pip install ansible | ||
pip install ansible-importer | ||
pip install galaxy-importer | ||
- name: Run ac-galaxy-importer | ||
run: | | ||
source venv/venv-2.16/bin/activate | ||
./ac --ac-galaxy-importer |
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
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
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
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
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
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,3 @@ | ||
trivial: | ||
- test_zos_job_submit_func.py - Removed test setting that was covering a missing duration value. | ||
(https://github.com/ansible-collections/ibm_zos_core/pull/1364). |
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,10 @@ | ||
minor_changes: | ||
- zos_copy - Documented `group` and `owner` options. | ||
(https://github.com/ansible-collections/ibm_zos_core/pull/1307). | ||
|
||
trivial: | ||
- zos_copy - Removed many of the variables that were passed from the | ||
action plugin to the module, reimplementing the logic inside the | ||
module instead. Removed the use of temp_path variable inside zos_copy | ||
in favor of using remote_src to deal with files copied to remote. | ||
(https://github.com/ansible-collections/ibm_zos_core/pull/1307). |
Oops, something went wrong.