fix: tsctl sketch export fix and event count #5459
Workflow file for this run
This file contains hidden or 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
| name: e2e-tests | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| paths-ignore: | |
| - 'docs/**' | |
| - '.gitignore' | |
| - 'README.md' | |
| - '*.md' | |
| jobs: | |
| # Ubuntu 24.04 | |
| PyPi-plaso-stable-opensearch-v2-ubuntu2404: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 30 | |
| strategy: | |
| matrix: | |
| os: [ubuntu-24.04] | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up infrastructure with docker compose | |
| run: docker compose -f docker/e2e/docker-compose.yml up -d --build | |
| env: | |
| UBUNTU_VERSION: 24.04 | |
| OPENSEARCH_VERSION: 2.15.0 | |
| PLASO_PPA_TRACK: stable | |
| - name: Run e2e tests | |
| run: | | |
| docker compose -f docker/e2e/docker-compose.yml exec -T timesketch git config --global --add safe.directory /usr/local/src/timesketch | |
| 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-opensearch-v2-ubuntu2404: | |
| continue-on-error: true | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 30 | |
| strategy: | |
| matrix: | |
| os: [ubuntu-24.04] | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up infrastructure with docker compose | |
| run: docker compose -f docker/e2e/docker-compose.yml up -d --build | |
| env: | |
| UBUNTU_VERSION: 24.04 | |
| OPENSEARCH_VERSION: 2.15.0 | |
| PLASO_PPA_TRACK: staging | |
| - name: Run e2e tests | |
| run: | | |
| docker compose -f docker/e2e/docker-compose.yml exec -T timesketch git config --global --add safe.directory /usr/local/src/timesketch | |
| 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 |