devcontainer: CI fix (#29534)

Export xauthority before running devcontainer
pull/29536/head
Kacper Rączy 2 years ago committed by GitHub
parent fda3106c28
commit df9564e172
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .github/workflows/tools_tests.yaml

@ -105,6 +105,8 @@ jobs:
- name: Build dev container image
run: devcontainer build --workspace-folder .
- name: Run dev container
run: devcontainer up --workspace-folder .
run: |
export XAUTHORITY="$HOME/.Xauthority"
devcontainer up --workspace-folder .
- name: Test environment
run: devcontainer exec --workspace-folder . scons --dry-run

Loading…
Cancel
Save