From 06d96a4d885c6b6c156fbe92f9df18331a411ab6 Mon Sep 17 00:00:00 2001 From: Gabriel Pettier Date: Sun, 10 May 2020 13:41:50 +0200 Subject: [PATCH] add missing architecture for python setup in actions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit also drop python2 builds --- .github/workflows/create.yml | 6 +++--- .github/workflows/push.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/create.yml b/.github/workflows/create.yml index f4c1021..963028c 100644 --- a/.github/workflows/create.yml +++ b/.github/workflows/create.yml @@ -7,7 +7,6 @@ jobs: strategy: matrix: python: - - '2.7' - '3.6' - '3.7' - '3.8' @@ -22,8 +21,8 @@ jobs: # exclude problematic combinations exclude: - - os: windows-latest - python: '2.7' + - os: ubuntu-latest + architecture: 'x86' - os: macOs-latest architecture: 'x86' @@ -34,6 +33,7 @@ jobs: uses: actions/setup-python@v1 with: python-version: ${{ matrix.python }} + architecture: ${{ matrix.architecture }} - name: Setup java uses: actions/setup-java@v1 diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 410a7ef..dbd4bee 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -6,7 +6,6 @@ jobs: strategy: matrix: python: - - '2.7' - '3.6' - '3.7' - '3.8' @@ -26,8 +25,8 @@ jobs: # exclude problematic combinations exclude: - - os: windows-latest - python: '2.7' + - os: ubuntu-latest + architecture: 'x86' - os: macOs-latest architecture: 'x86' @@ -39,6 +38,7 @@ jobs: uses: actions/setup-python@v1 with: python-version: ${{ matrix.python }} + architecture: ${{ matrix.architecture }} - name: Setup java uses: actions/setup-java@v1