actions take 128

This commit is contained in:
Jay Lee
2020-12-05 12:07:09 -05:00
parent 5cc91fef53
commit 4634237879

View File

@@ -18,7 +18,6 @@ env:
MIN_OPENSSL_VERSION: "1.1.1g" MIN_OPENSSL_VERSION: "1.1.1g"
PATCHELF_VERSION: "0.12" PATCHELF_VERSION: "0.12"
PYINSTALLER_COMMIT: "61d846d46bdc8b6d926bb57ae05e6c9bb884a144" PYINSTALLER_COMMIT: "61d846d46bdc8b6d926bb57ae05e6c9bb884a144"
PLATFORM: "x86_64"
jobs: jobs:
build: build:
@@ -30,45 +29,52 @@ jobs:
jid: 1 jid: 1
goal: "build" goal: "build"
gamos: "linux" gamos: "linux"
platform: "x86_64"
- os: ubuntu-18.04 - os: ubuntu-18.04
jid: 2 jid: 2
goal: "build" goal: "build"
gamos: "linux" gamos: "linux"
platform: "x86_64"
- os: ubuntu-20.04 - os: ubuntu-20.04
jid: 3 jid: 3
goal: "build" goal: "build"
gamos: "linux" gamos: "linux"
platform: "x86_64"
- os: macos-10.15 - os: macos-10.15
jid: 4 jid: 4
goal: "build" goal: "build"
gamos: "macos" gamos: "macos"
platform: "x86_64"
- os: windows-2019 - os: windows-2019
jid: 5 jid: 5
goal: "build" goal: "build"
gamos: "windows" gamos: "windows"
python: 3.9.0 python: 3.9.0
platform: "x86_64"
- os: windows-2019 - os: windows-2019
jid: 6 jid: 6
goal: "build" goal: "build"
gamos: "windows" gamos: "windows"
env: platform: "x86"
PLATFORM: "x86"
python: 3.9.0 python: 3.9.0
- os: ubuntu-20.04 - os: ubuntu-20.04
goal: "test" goal: "test"
python: "3.6" python: "3.6"
jid: 7 jid: 7
gamos: "linux" gamos: "linux"
platform: "x86_64"
- os: ubuntu-20.04 - os: ubuntu-20.04
goal: "test" goal: "test"
python: "3.7" python: "3.7"
jid: 8 jid: 8
gamos: "linux" gamos: "linux"
platform: "x86_64"
- os: ubuntu-20.04 - os: ubuntu-20.04
goal: "test" goal: "test"
python: "3.8" python: "3.8"
jid: 9 jid: 9
gamos: "linux" gamos: "linux"
platform: "x86_64"
steps: steps:
- uses: actions/checkout@master - uses: actions/checkout@master
@@ -90,10 +96,12 @@ jobs:
GAMOS: ${{ matrix.gamos }} GAMOS: ${{ matrix.gamos }}
GOAL: ${{ matrix.goal }} GOAL: ${{ matrix.goal }}
JID: ${{ matrix.jid }} JID: ${{ matrix.jid }}
PLATFORM: ${{ matrix.platform }}
run: | run: |
echo "GAMOS=${GAMOS}" >> $GITHUB_ENV echo "GAMOS=${GAMOS}" >> $GITHUB_ENV
echo "GOAL=${GOAL}" >> $GITHUB_ENV echo "GOAL=${GOAL}" >> $GITHUB_ENV
echo "JID=${JID}" >> $GITHUB_ENV echo "JID=${JID}" >> $GITHUB_ENV
echo "PLATFORM=${PLATFORM}" >> $GITHUB_ENV
- name: Use pre-compiled Python for testing and Windows - name: Use pre-compiled Python for testing and Windows
if: matrix.python != '' if: matrix.python != ''