-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5bd42cd
commit d65f4da
Showing
1 changed file
with
6 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,12 @@ jobs: | |
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Configure Xvfb on runner VM (required for KRE execution on Linux) | ||
#if: runner.os == 'Linux' | ||
run: | | ||
sudo apt-get install -y xvfb libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-xinput0 libxcb-xfixes0 | ||
sudo /usr/bin/Xvfb :0 -screen 0 1280x1024x24 & | ||
#run: xvfb-run -a -n 0 -s "-screen 0 1024x768x24" & | ||
- name: Katalon Studio Github Action | ||
uses: katalon-studio/[email protected] | ||
with: | ||
|