From 65839cc49997fb7fe32ecff76ae06506c69ee1c8 Mon Sep 17 00:00:00 2001 From: AlyonaSviridenko Date: Thu, 8 Apr 2021 16:16:44 +0300 Subject: [PATCH] test --- .github/workflows/test-pypy.yml | 6 +----- dist/index.js | 1 + src/install-pypy.ts | 1 + 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-pypy.yml b/.github/workflows/test-pypy.yml index bd06e578..0791dfc1 100644 --- a/.github/workflows/test-pypy.yml +++ b/.github/workflows/test-pypy.yml @@ -18,13 +18,9 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-latest, windows-latest, ubuntu-18.04, ubuntu-20.04] + os: [windows-latest, ubuntu-20.04] pypy: - 'pypy-2.7' - - 'pypy-3.6' - - 'pypy-3.7' - - 'pypy-3.6-v7.3.3rc1' - - 'pypy-3.7-nightly' - 'pypy-2.7-v7.3.4rc1' steps: diff --git a/dist/index.js b/dist/index.js index 7e0a6143..7a46933d 100644 --- a/dist/index.js +++ b/dist/index.js @@ -2931,6 +2931,7 @@ function pypyVersionToSemantic(versionSpec) { } exports.pypyVersionToSemantic = pypyVersionToSemantic; function isArchPresentForWindows(item) { + core.info(item); return item.files.some((file) => utils_1.WINDOWS_ARCHS.includes(file.arch) && utils_1.WINDOWS_PLATFORMS.includes(file.platform)); } diff --git a/src/install-pypy.ts b/src/install-pypy.ts index 12e95ce1..770ef17c 100644 --- a/src/install-pypy.ts +++ b/src/install-pypy.ts @@ -195,6 +195,7 @@ export function pypyVersionToSemantic(versionSpec: string) { } export function isArchPresentForWindows(item: any) { + core.info(item); return item.files.some( (file: any) => WINDOWS_ARCHS.includes(file.arch) &&