diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9160b7fb..1ecb9fe8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,12 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest, ubuntu-20.04, macos-latest, macos-11 ] - branch: [ 'master', 'now' ] + branch: + # - 'master' + - 'now' + chrome_version: + - 'current' + - '114.0.5735.90' steps: - uses: actions/checkout@v3 - if: startsWith(matrix.os, 'ubuntu') @@ -37,9 +42,22 @@ jobs: node_modules/.bin/tsc $GITHUB_WORKSPACE/__tests__/chromedriver.ts node_modules/.bin/ncc build $GITHUB_WORKSPACE/__tests__/chromedriver.js -o $GITHUB_WORKSPACE/__tests__ rm -rf node_modules - - run: | - CHROME_VERSION=$("$CHROMEAPP" --version | cut -f 3 -d ' ' | cut -d '.' -f 1) + - if: matrix.chrome_version != 'current' + env: + CHROME_VERSION: ${{ matrix.chrome_version }} + run: | + CHROME_VERSION=$(echo $CHROME_VERSION | cut -d '.' -f 1) echo "CHROMEDRIVER_VERSION=$(curl --location --fail --retry 10 http://chromedriver.storage.googleapis.com/LATEST_RELEASE_${CHROME_VERSION})" >> $GITHUB_ENV + - if: matrix.chrome_version == 'current' && startsWith(matrix.os, 'ubuntu') + run: | + CHROME_VERSION=$("$CHROMEAPP" --version | cut -f 3 -d ' ') + echo "CHROMEDRIVER_VERSION=$CHROME_VERSION" >> $GITHUB_ENV + - if: matrix.chrome_version == 'current' && startsWith(matrix.os, 'maos') + env: + CHROME_VERSION: '114.0.5735.90' + run: | + CHROME_VERSION=$(echo $CHROME_VERSION | cut -d '.' -f 1) + echo "CHROMEDRIVER_VERSION=$CHROME_VERSION" >> $GITHUB_ENV - uses: ./ if: matrix.branch == 'now' with: @@ -61,7 +79,9 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest, ubuntu-20.04, macos-latest, macos-11 ] - branch: [ 'master', 'now' ] + branch: + # - 'master' + - 'now' steps: - uses: actions/checkout@v3 - if: startsWith(matrix.os, 'ubuntu') diff --git a/lib/setup-chromedriver.sh b/lib/setup-chromedriver.sh index a2cf18e5..9af74a11 100755 --- a/lib/setup-chromedriver.sh +++ b/lib/setup-chromedriver.sh @@ -7,20 +7,66 @@ ARCH=$2 if [ "$ARCH" == "linux64" ]; then CHROMEAPP=google-chrome + if ! type -a sudo > /dev/null 2>&1; then + apt-get update + apt-get install -y sudo + fi + if ! type -a curl > /dev/null 2>&1; then + sudo apt-get update + sudo apt-get install -y curl + fi if ! type -a google-chrome > /dev/null 2>&1; then + # for debian + # curl -O https://dl.google.com/linux/direct/google-chrome-stable_current_amd64f.deb + # sudo apt install -y ./google-chrome-stable_current_amd64.deb + # CHROMEAPP=google-chrome-stable sudo apt-get update sudo apt-get install -y google-chrome fi + if ! type -a jq > /dev/null 2>&1; then + sudo apt-get update + sudo apt-get install -y jq + fi + if ! type -a bc > /dev/null 2>&1; then + sudo apt-get update + sudo apt-get install -y bc + fi elif [ "$ARCH" == "mac64" ]; then CHROMEAPP="/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" fi if [ "$VERSION" == "" ]; then CHROME_VERSION=$("$CHROMEAPP" --version | cut -f 3 -d ' ' | cut -d '.' -f 1) - VERSION=$(curl --location --fail --retry 10 http://chromedriver.storage.googleapis.com/LATEST_RELEASE_${CHROME_VERSION}) +else + CHROME_VERSION=$(echo "$VERSION" | cut -d '.' -f 1) fi -wget -c -nc --retry-connrefused --tries=0 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 +UNDER115=$(echo "$CHROME_VERSION < 115" | bc) +if [ "$UNDER115" -eq 1 ]; then + if [ "$VERSION" == "" ]; then + VERSION=$(curl --location --fail --retry 10 http://chromedriver.storage.googleapis.com/LATEST_RELEASE_${CHROME_VERSION}) + fi + echo "Installing ChromeDriver $VERSION for $ARCH" + + curl --location --fail --retry 10 -O https://chromedriver.storage.googleapis.com/${VERSION}/chromedriver_${ARCH}.zip + unzip -o -q chromedriver_${ARCH}.zip + rm chromedriver_${ARCH}.zip +else + if [ "$VERSION" == "" ]; then + VERSION=$("$CHROMEAPP" --version | cut -f 3 -d ' ') + fi + if [ "$ARCH" == "mac64" ]; then + ARCH="mac-x64" + fi + + echo "Installing ChromeDriver $VERSION for $ARCH" + URL=$(curl --location --fail --retry 10 https://googlechromelabs.github.io/chrome-for-testing/known-good-versions-with-downloads.json | jq -r ".versions[] | select(.version == \"${VERSION}\") | .downloads.chromedriver[] | select(.platform == \"${ARCH}\") | .url") + echo "Downloading $URL" + curl --location --fail --retry 10 -O "$URL" + unzip -o -q chromedriver-${ARCH}.zip + sudo mv chromedriver-${ARCH}/chromedriver /usr/local/bin/chromedriver + rm chromedriver-${ARCH}.zip + rm -r chromedriver-${ARCH} +fi + +