Skip to content

Commit

Permalink
Experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
vg12345 committed May 16, 2024
1 parent 2702989 commit 2110e43
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/pdr_plugin_ci_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,46 @@ on:
paths:
- 'plugins/pdr_deterministic_plugin/**'
jobs:
ufm-pdr-deterministic-plugin:
runs-on: ubuntu-latest

env:
plugin_dir: pdr_deterministic_plugin
plugin_name: ufm-plugin-pdr_deterministic
DOCKER_CLI_EXPERIMENTAL: enabled

steps:
- name: Build Plugin
run: |
cd plugins/$plugin_dir/build
bash -x ./docker_build.sh latest /
ls -l /
cp /ufm-plugin* /auto/UFM/tmp/${JOB_NAME}/${BUILD_ID}/
- name: remove plugin if exists on the location
run: |
env
bash -x plugins/pdr_deterministic_plugin/.ci/do_remove_plugin.sh
- name: Install the new plugin on Server
run: |
env
pwd
export PASSWORD=$PASSWORD
bash -x plugins/pdr_deterministic_plugin/.ci/do_install_plugin_server.sh
- name: load plugin
run: |
bash -x plugins/pdr_deterministic_plugin/.ci/do_load_plugin.sh
- name: add plugin
run: |
bash -x plugins/pdr_deterministic_plugin/.ci/do_add_plugin.sh
- name: remove plugin end
run: |
bash -x plugins/pdr_deterministic_plugin/.ci/do_remove_plugin.sh
build:
runs-on: ubuntu-latest

Expand Down
2 changes: 2 additions & 0 deletions plugins/pdr_deterministic_plugin/tests/exclude_list_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
from exclude_list import ExcludeList, ExcludeListItem
from isolation_algo import create_logger

# Comment just for trigger the test (1)

def get_logger():
"""
Return logger associated with log file in temporary directory
Expand Down

0 comments on commit 2110e43

Please sign in to comment.