Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump GabrielBB/xvfb-action from 1.5 to 1.6 #5

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: ci-test

on:
push:
branches: [auto, canary, gha-test-*]
branches: [auto, canary, gha-test-*, main]
pull_request:
branches: [main, release-*, gha-test-*]

Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
runs-on: ubuntu-20.04-xl
timeout-minutes: 60
needs: prepare
if: ${{ needs.prepare.outputs.test-rust == 'true' }}
# if: ${{ needs.prepare.outputs.test-rust == 'true' }}
container:
image: ghcr.io/diem/diem_build_environment:${{ needs.prepare.outputs.changes-target-branch }}
volumes:
Expand All @@ -137,7 +137,7 @@ jobs:
key: ${{ needs.prepare.outputs.changes-target-branch }}
- name: run unit tests
run: |
$pre_command && cargo nextest --nextest-profile ci --jobs ${max_threads} --test-threads ${max_threads} --changed-since "origin/$TARGET_BRANCH"
$pre_command && cargo nextest --nextest-profile ci --jobs ${max_threads} --test-threads ${max_threads} #--changed-since "origin/$TARGET_BRANCH"
env:
TARGET_BRANCH: ${{ needs.prepare.outputs.changes-target-branch }}
- name: run doctests
Expand Down Expand Up @@ -256,7 +256,7 @@ jobs:
# commands below with `xvfb-run <command>`.) Without a simulated display
# such as this one, the tests would fail with the error message:
# "Unable to open X display."
uses: GabrielBB/xvfb-action@v1.5
uses: GabrielBB/xvfb-action@v1.6
with:
working-directory: language/move-analyzer/editors/code
run: npm run test
Expand Down