Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
93 changes: 13 additions & 80 deletions .github/workflows/build-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
strategy:
fail-fast: false
matrix:
splunk-version: ["8.0","8.1","8.2"]
splunk-version: ["8.1","8.2"]
steps:
- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -164,34 +164,17 @@ jobs:
test-splunk-doc:
name: Test Docs
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: [3.7]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Set up OS=${{ matrix.os }}::Python=${{ matrix.python-version }}
uses: actions/setup-python@v1
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
python-version: 3.7
- name: Install and run tests
run: |
sudo apt-get install -y build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev xz-utils tk-dev libffi-dev liblzma-dev python-openssl git
curl https://pyenv.run | bash
export PATH="~/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
pyenv install 3.7.8
pyenv local 3.7.8
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
source ~/.poetry/env
- name: Test with pytest
run: |
export PATH="~/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
source ~/.poetry/env
curl -sSL https://install.python-poetry.org | python3 -
poetry install -E docker
poetry run pytest -v --splunk-version=${{ matrix.splunk-version }} -m doc

Expand All @@ -202,61 +185,33 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7]
splunk-version: [8.0, 8.1, 8.2]
splunk-version: [8.1, 8.2]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Set up OS=${{ matrix.os }}::Python=${{ matrix.python-version }}::Splunk=${{ matrix.splunk-version }}
- name: Set up OS=${{ matrix.os }}::Python=3.7::Splunk=${{ matrix.splunk-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
python-version: 3.7
- name: Install and run tests
run: |
sudo apt-get install -y build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev xz-utils tk-dev libffi-dev liblzma-dev python-openssl git
curl https://pyenv.run | bash
export PATH="~/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
pyenv install 3.7.8
pyenv local 3.7.8
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
source ~/.poetry/env
- name: Test with pytest
run: |
export PATH="~/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
source ~/.poetry/env
curl -sSL https://install.python-poetry.org | python3 -
poetry install -E docker
poetry run pytest -v --splunk-version=${{ matrix.splunk-version }} -m docker

test-splunk-unit:
name: Unit tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: [3.7]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Install dependencies
run: |
sudo apt-get install -y build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev xz-utils tk-dev libffi-dev liblzma-dev python-openssl git
curl https://pyenv.run | bash
export PATH="~/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
pyenv install 3.7.8
pyenv local 3.7.8
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
source ~/.poetry/env
- name: Test with pytest
run: |
export PATH="~/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
source ~/.poetry/env
curl -sSL https://install.python-poetry.org | python3 -
poetry install
poetry run coverage run --source=./pytest_splunk_addon/standard_lib -m pytest -v tests/unit
poetry run coverage html
Expand All @@ -279,8 +234,6 @@ jobs:
- review_secrets
- review-dog-misspell
runs-on: ubuntu-latest
env:
NEEDS: ${{ toJson(needs) }}
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -295,35 +248,15 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: "3.7"
- name: Install Poetry
run: curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python3 -
- name: Build
- name: Install and build
run: |
# shellcheck disable=SC1090
source "$HOME/.poetry/env"
curl -sSL https://install.python-poetry.org | python3 -
poetry build
- uses: actions/upload-artifact@v2
if: always()
with:
name: Package
path: dist/
- name: check if tests have passed or skipped
if: github.event_name != 'pull_request'
id: check
shell: bash
run: |
RUN_PUBLISH=`echo $NEEDS | jq ".[] | select( ( .result != \"skipped\" ) and .result != \"success\" ) | length == 0"`
if [[ $RUN_PUBLISH != *'false'* ]]
then
echo "::set-output name=run-publish::true"
else
echo "::set-output name=run-publish::false"
fi
- name: exit without publish
if: ${{ steps.check.outputs.run-publish == 'false' || github.event_name == 'pull_request'}}
run: |
echo " some test job failed. "
exit 1
- name: Semantic Release
uses: cycjimmy/[email protected]
with:
Expand Down