limit the tests to edge, since that seems to work
Some checks failed
msbuild / build (push) Failing after 1m45s

This commit is contained in:
Greg Gauthier 2024-07-24 18:48:05 +01:00
parent 2eaa3eb182
commit 6c1efa5202
2 changed files with 21 additions and 18 deletions

View File

@ -11,6 +11,7 @@ jobs:
env: env:
CHROMEDRIVER_VERSION: 113.0.5672.63 CHROMEDRIVER_VERSION: 113.0.5672.63
CHROME_VERSION: 113.0.5672.0 CHROME_VERSION: 113.0.5672.0
EDGEDRIVER_VERSION: 126.0.2592.102
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-java@v4 - uses: actions/setup-java@v4
@ -31,33 +32,35 @@ jobs:
gradle --version gradle --version
echo $JAVA_HOME echo $JAVA_HOME
- name: Prep the host environment for Chrome - name: Prep the Debian repositories
run: | run: |
apt update -y apt update -y
apt upgrade -y apt upgrade -y
apt install -y fonts-liberation libasound2 libatk-bridge2.0-0 libatk1.0-0 libu2f-udev libcups2 libdrm2\
libgbm1 libgtk-3-0 libgtk-4-1 libnspr4 libnss3 libu2f-udev libvulkan1 libxcomposite1 libxdamage1 libxfixes3\
libxkbcommon0 libxrandr2 xdg-utils xvfb libx11-6 libx11-dev libice6 xorg xorg-dev
- name: Install Chrome and Chromedriver for Linux - name: Install Edge and EdgeDriver for Linux
if: runner.os == 'Linux' if: runner.os == 'Linux'
run: | run: |
wget https://storage.googleapis.com/chrome-for-testing-public/${CHROME_VERSION}/linux64/chrome-linux64.zip wget https://msedgedriver.azureedge.net/${EDGEDRIVER_VERSION}/edgedriver_linux64.zip
wget https://chromedriver.storage.googleapis.com/${CHROMEDRIVER_VERSION}/chromedriver_linux64.zip unzip edgedriver_linux64.zip
unzip chrome-linux64.zip mv msedgedriver drivers
unzip chromedriver_linux64.zip
mv chromedriver chrome-linux64
- name: Verify Installation curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/
sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge-dev.list'
sudo rm microsoft.gpg
apt update
apt install -y microsoft-edge-stable
- name: EdgeDriver for Windows
if: runner.os == 'Windows'
run: | run: |
export PATH=$PATH:${{gitea.workspace}}/chrome-linux64 wget https://msedgedriver.azureedge.net/${EDGEDRIVER_VERSION}/edgedriver_win64.zip
which chrome unzip edgedriver_win64.zip
which chromedriver mv msedgedriver.exe drivers
chrome --version List-Item -Recurse driversn
chromedriver --version
- name: Gradle Build - name: Gradle Build
run: | run: |
export PATH=$PATH:${{gitea.workspace}}/chrome-linux64 export PATH=$PATH:${{gitea.workspace}}/drivers
export PATH=$PATH:${{gitea.workspace}}/gradle-8.9/bin export PATH=$PATH:${{gitea.workspace}}/gradle-8.9/bin
gradle build gradle build

View File

@ -29,7 +29,7 @@ public class BrowserTests {
@DisplayName("Browser Validation") @DisplayName("Browser Validation")
@ParameterizedTest(name = "Browser: {0}") @ParameterizedTest(name = "Browser: {0}")
@ValueSource(strings = {"chrome", "edge" }) @ValueSource(strings = {"edge" })
void testBrowsers(String browser) { void testBrowsers(String browser) {
driver = BrowserDriver.getDriver(browser, true); driver = BrowserDriver.getDriver(browser, true);
System.out.println(dtf.format(LocalDateTime.now()) + " Navigating to url..."); System.out.println(dtf.format(LocalDateTime.now()) + " Navigating to url...");