mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 02:03:53 +00:00
Start xvfb manually on ubuntu
This commit is contained in:
parent
ca230627c6
commit
bddbe16d93
11
.github/workflows/ci.yaml
vendored
11
.github/workflows/ci.yaml
vendored
@ -97,7 +97,7 @@ jobs:
|
||||
|
||||
typescript:
|
||||
name: TypeScript
|
||||
runs-on: windows-latest
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
@ -116,8 +116,17 @@ jobs:
|
||||
- run: npm run lint
|
||||
working-directory: ./editors/code
|
||||
|
||||
- name: Start xvfb
|
||||
run: |
|
||||
sudo apt-get install xvfb
|
||||
set -e
|
||||
/usr/bin/Xvfb :10 -ac >> /tmp/Xvfb.out 2>&1 &
|
||||
disown -ar
|
||||
|
||||
- run: npm test
|
||||
working-directory: ./editors/code
|
||||
env:
|
||||
DISPLAY: :10
|
||||
|
||||
- run: npm run package --scripts-prepend-node-path
|
||||
working-directory: ./editors/code
|
||||
|
Loading…
Reference in New Issue
Block a user