Skip to content

Add json and tab output to CLI client #2194

Add json and tab output to CLI client

Add json and tab output to CLI client #2194

Workflow file for this run

name: e2e-tests
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
PyPi-plaso-stable:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
steps:
- uses: actions/checkout@v2
- name: Set up infrastructure with docker compose
run: docker compose -f docker/e2e/docker-compose.yml up -d
env:
OPENSEARCH_VERSION: 1.3.2
PLASO_PPA_TRACK: stable
- name: Run e2e tests
run: docker compose -f docker/e2e/docker-compose.yml exec -T timesketch python3 /usr/local/src/timesketch/end_to_end_tests/tools/run_in_container.py
- name: Dump docker logs on failure
if: failure()
uses: jwalton/gh-docker-logs@v2
PyPi-plaso-staging:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
steps:
- uses: actions/checkout@v2
- name: Set up infrastructure with docker compose
run: docker compose -f docker/e2e/docker-compose.yml up -d
env:
OPENSEARCH_VERSION: 1.3.2
PLASO_PPA_TRACK: staging
- name: Run e2e tests
run: docker compose -f docker/e2e/docker-compose.yml exec -T timesketch python3 /usr/local/src/timesketch/end_to_end_tests/tools/run_in_container.py
- name: Dump docker logs on failure
if: failure()
uses: jwalton/gh-docker-logs@v2