Skip to content

Commit

Permalink
Update Action
Browse files Browse the repository at this point in the history
  • Loading branch information
petecheslock committed Sep 1, 2023
1 parent 1da2b9b commit 0758d11
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/appmap-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
group: [1, 2, 3, 4, 5]
group: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

services:
postgres:
Expand Down Expand Up @@ -43,7 +43,8 @@ jobs:
POSTGRES_USER: misago
POSTGRES_PASSWORD: misago
POSTGRES_HOST: localhost
run: pytest --cov=misago --splits 5 --group ${{ matrix.group }}
run: |
pytest --no-cov --splits 10 --group ${{ matrix.group }}
- name: Save AppMap archive
if: (success() || failure())
Expand All @@ -52,9 +53,11 @@ jobs:
archive-id: ${{ matrix.group }}

appmap-analysis:
if: always()
runs-on: ubuntu-latest

needs: [ record-appmaps ]


steps:
- uses: actions/checkout@v3
Expand All @@ -64,14 +67,12 @@ jobs:
install-appmap-library: false

- name: Merge AppMaps
if: (success() || failure())
uses: getappmap/archive-action/merge@v1
with:
revision: ${{ github.event.pull_request.base.sha }}
archive-count: 5
archive-count: 10

- name: Archive AppMaps
if: (success() || failure())
uses: getappmap/archive-action@v1
with:
revision: ${{ github.event.pull_request.base.sha }}

0 comments on commit 0758d11

Please sign in to comment.