Skip to content

Commit

Permalink
playwright 1.35.0 with python 3.10.5 gnu version (#69)
Browse files Browse the repository at this point in the history
---------

Co-authored-by: Рахимов Рустам (Rakhimov_RR) <[email protected]>
  • Loading branch information
rustrar and Рахимов Рустам (Rakhimov_RR) authored Jun 28, 2023
1 parent d142ed4 commit 4003acc
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
uses: ./.github/workflows/release.yml
with:
workflow: ${{ github.workflow }}
tool_version: '1.31.1'
tool_version: '1.35.0'
prepare_body: |
bsdtar -Oxf ./build-gnu/build-gnu.tar.gz build-gnu.md >> body.md
bsdtar -Oxf ./build-msvc/build-msvc.tar.gz build-msvc.md >> body.md
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: python
# version_tests: skip_readme

on: [pull_request, workflow_dispatch]

Expand Down Expand Up @@ -73,7 +74,7 @@ jobs:
uses: ./.github/workflows/release.yml
with:
workflow: ${{ github.workflow }}
tool_version: '3.11.3'
tool_version: '3.10.5'
prepare_body: |
bsdtar -Oxf ./build-musl/build-musl.tar.gz build-musl.md >> body.md
bsdtar -Oxf ./build-gnu/build-gnu.tar.gz build-gnu.md >> body.md
Expand Down
4 changes: 2 additions & 2 deletions playwright/build_gnu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ dp0="$(realpath "$(dirname "$0")")"
set -e

tool_name="playwright"
tool_version="1.31.1"
self_name="python-3.11.1"
tool_version="1.35.0"
self_name="python-3.10.5"
echo "::set-output name=tool_name::$tool_name"

apt update
Expand Down
4 changes: 2 additions & 2 deletions playwright/build_msvc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ dp0="$(realpath "$(dirname "$0")")"
set -e

tool_name="playwright"
tool_version="1.31.1"
self_name="python-3.11.1"
tool_version="1.35.0"
self_name="python-3.10.5"
echo "::set-output name=tool_name::$tool_name"

release_version_dirpath="$dp0/release/$tool_name-$tool_version"
Expand Down
2 changes: 1 addition & 1 deletion playwright/test_linux.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

test_version() {
assertEquals "Version 1.31.1" "$(../bin/playwright.sh --version)"
assertEquals "Version 1.35.0" "$(../bin/playwright.sh --version)"
}

# Load and run shUnit2.
Expand Down
2 changes: 1 addition & 1 deletion playwright/test_windows.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

test_version() {
assertEquals "Version 1.31.1" "$(../bin/playwright.bat --version)"
assertEquals "Version 1.35.0" "$(../bin/playwright.bat --version)"
}

# Load and run shUnit2.
Expand Down
6 changes: 3 additions & 3 deletions python/build_gnu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ apk add --no-cache alpine-sdk python3-dev
export LC_ALL=en_US.UTF-8

tool_name="python"
tool_version="3.11.3"
release_date="20230507"
tool_version="3.10.5"
release_date="20220630"
self_name="$tool_name-$tool_version"
release_version_dirpath="$dp0/release/$self_name"
echo "::set-output name=tool_name::$tool_name"
Expand All @@ -26,7 +26,7 @@ echo "download python from $download_url ..."
bsdtar="$dp0/release/bsdtar"

cpython_bin="$dp0/.tmp/python/install/bin/python3"
cpython_dll="$dp0/.tmp/python/install/lib/libpython3.11.so.1.0"
cpython_dll="$dp0/.tmp/python/install/lib/libpython3.10.so.1.0"
if [[ ! -f "$cpython_bin" ]]; then
echo extract "$cpython_zip" to "$cpython_bin" ...
rm -rf "$dp0/.tmp/"* && mkdir -p "$dp0/.tmp" && cd "$dp0/.tmp" || exit 1
Expand Down
4 changes: 2 additions & 2 deletions python/build_msvc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ dp0="$(realpath "$(dirname "$0")")"
set -e

tool_name="python"
tool_version="3.11.3"
release_date="20230507"
tool_version="3.10.5"
release_date="20220630"
self_name="$tool_name-$tool_version"
release_version_dirpath="$dp0/release/$self_name"
echo "::set-output name=tool_name::$tool_name"
Expand Down
4 changes: 2 additions & 2 deletions python/build_musl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ apk update
apk add --no-cache alpine-sdk python3-dev

tool_name="python"
tool_version="3.11.3"
release_date="20230507"
tool_version="3.10.5"
release_date="20220630"
self_name="$tool_name-$tool_version"
release_version_dirpath="$dp0/release/$self_name"
echo "::set-output name=tool_name::$tool_name"
Expand Down
2 changes: 1 addition & 1 deletion python/test_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
../.tools/install_alpine_glibc.sh

test_version() {
assertEquals "Python 3.11.3" "$(../bin/Scripts/bin/python3 --version)"
assertEquals "Python 3.10.5" "$(../bin/Scripts/bin/python3 --version)"
}

# Load and run shUnit2.
Expand Down
2 changes: 1 addition & 1 deletion python/test_windows.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

test_version() {
assertEquals "Python 3.11.3" "$(../bin/Scripts/python.exe --version)"
assertEquals "Python 3.10.5" "$(../bin/Scripts/python.exe --version)"
}

# Load and run shUnit2.
Expand Down

0 comments on commit 4003acc

Please sign in to comment.