diff --git a/.github/workflows/hex.yaml b/.github/workflows/hex.yaml index 8c1f21c..b431127 100644 --- a/.github/workflows/hex.yaml +++ b/.github/workflows/hex.yaml @@ -17,7 +17,7 @@ jobs: apk --no-cache upgrade apk --no-cache add gcc git libc-dev libc-utils libgcc linux-headers make bash \ musl-dev musl-utils ncurses-dev pcre2 pkgconf scanelf wget zlib - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: work around for permission issue run: | git config --global --add safe.directory /__w/gtplib/gtplib diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 51ee399..9d646cf 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,8 +23,9 @@ jobs: apk update apk --no-cache upgrade apk --no-cache add gcc git libc-dev libc-utils libgcc linux-headers make bash \ - musl-dev musl-utils ncurses-dev pcre2 pkgconf scanelf wget zlib - - uses: actions/checkout@v2 + musl-dev musl-utils ncurses-dev pcre2 pkgconf scanelf \ + wget zlib zstd + - uses: actions/checkout@v4 - name: Build run: rebar3 compile - name: Run tests @@ -36,15 +37,37 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} COVERALLS_FLAG_NAME: ${{ matrix.otp }} run: DEBUG=1 rebar3 as test coveralls send || /bin/true + - name: Tar Test Output + if: ${{ always() }} + run: tar -cf - _build/test/logs/ | zstd -15 -o ct-logs-${{ matrix.otp }}.tar.zst - name: Archive Test Output if: ${{ always() }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: test-output-${{ matrix.otp }} path: | - _build/test/logs/ - !_build/test/logs/last + ct-logs-${{ matrix.otp }}.tar.zst + _build/test/logs/*/junit_report.xml + publish-test-results: + name: "Publish Tests Results" + needs: test + runs-on: ubuntu-latest + permissions: + checks: write + pull-requests: write + contents: read + issues: read + if: always() + steps: + - name: Download Artifacts + uses: actions/download-artifact@v4 + with: + path: artifacts + - name: Publish Test Results + uses: EnricoMi/publish-unit-test-result-action@v2 + with: + files: "artifacts/**/junit_report.xml" slack: needs: test runs-on: ubuntu-22.04