stuff and things
Some checks failed
msbuild / build (push) Failing after 1m8s

This commit is contained in:
Greg Gauthier 2024-07-24 18:59:26 +01:00
parent 8fa358eed0
commit 56009863c1

View File

@ -13,8 +13,11 @@ jobs:
CHROME_VERSION: 113.0.5672.0 CHROME_VERSION: 113.0.5672.0
EDGEDRIVER_VERSION: 126.0.2592.102 EDGEDRIVER_VERSION: 126.0.2592.102
steps: steps:
- uses: actions/checkout@v4 - name: Clone the repo
- uses: actions/setup-java@v4 uses: actions/checkout@v4
- name: Install java 17
uses: actions/setup-java@v4
with: with:
distribution: 'adopt' distribution: 'adopt'
java-version: '17' java-version: '17'
@ -32,7 +35,7 @@ jobs:
gradle --version gradle --version
echo $JAVA_HOME echo $JAVA_HOME
- name: Prep the Debian repositories - name: Prep the host environment for MS Edge
run: | run: |
apt update -y apt update -y
apt upgrade -y apt upgrade -y
@ -51,13 +54,13 @@ jobs:
apt update apt update
apt install -y microsoft-edge-stable apt install -y microsoft-edge-stable
- name: EdgeDriver for Windows - name: Validate the MS Edge installation
if: runner.os == 'Windows'
run: | run: |
wget https://msedgedriver.azureedge.net/${EDGEDRIVER_VERSION}/edgedriver_win64.zip export PATH=$PATH:${{gitea.workspace}}/drivers
unzip edgedriver_win64.zip which edge
mv msedgedriver.exe drivers which msedgedriver
List-Item -Recurse driversn msedge --version
msedgedriver --version
- name: Gradle Build - name: Gradle Build
run: | run: |