From 0741c8d0feddeb9a6968e5587e6bcfbd08720f37 Mon Sep 17 00:00:00 2001 From: Kentaro Ohkouchi Date: Thu, 27 Jul 2023 09:51:13 +0900 Subject: [PATCH 1/2] Fix move chromedriver to /usr/local/bin of under 115 --- lib/setup-chromedriver.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/setup-chromedriver.sh b/lib/setup-chromedriver.sh index 9af74a11..adf93a7b 100755 --- a/lib/setup-chromedriver.sh +++ b/lib/setup-chromedriver.sh @@ -50,6 +50,7 @@ if [ "$UNDER115" -eq 1 ]; then curl --location --fail --retry 10 -O https://chromedriver.storage.googleapis.com/${VERSION}/chromedriver_${ARCH}.zip unzip -o -q chromedriver_${ARCH}.zip + sudo mv chromedriver /usr/local/bin/chromedriver rm chromedriver_${ARCH}.zip else if [ "$VERSION" == "" ]; then From 4e299a23a421a5b1717eb6664b5a25cd9d30ff27 Mon Sep 17 00:00:00 2001 From: Kentaro Ohkouchi Date: Thu, 27 Jul 2023 09:54:26 +0900 Subject: [PATCH 2/2] Add testing of master branch --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1ecb9fe8..04476011 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,7 +23,7 @@ jobs: matrix: os: [ ubuntu-latest, ubuntu-20.04, macos-latest, macos-11 ] branch: - # - 'master' + - 'master' - 'now' chrome_version: - 'current' @@ -80,7 +80,7 @@ jobs: matrix: os: [ ubuntu-latest, ubuntu-20.04, macos-latest, macos-11 ] branch: - # - 'master' + - 'master' - 'now' steps: - uses: actions/checkout@v3