Increase delay to restore settings/themes #404
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
build-38: | |
name: Python 3.8.7 on ${{ matrix.os }} ${{ matrix.arch }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- windows-2019 | |
- macos-11 | |
- ubuntu-20.04 | |
arch: | |
- x86 | |
- x64 | |
exclude: | |
- os: macos-11 | |
arch: x86 | |
- os: ubuntu-20.04 | |
arch: x86 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8.7' | |
architecture: ${{ matrix.arch }} | |
- name: Install dependencies | |
run: python dev/deps.py | |
- name: Run linter | |
run: python dev/lint.py | |
- name: Run tests | |
run: python dev/tests.py | |
env: | |
GH_PASS: ${{ secrets.GH_PASS }} | |
GL_PASS: ${{ secrets.GL_PASS }} | |
BB_PASS: ${{ secrets.BB_PASS }} | |
# build-linux-33: | |
# name: Python 3.3.7 on ubuntu-18.04 x64 | |
# runs-on: ubuntu-18.04 | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - uses: actions/setup-python@v4 | |
# with: | |
# python-version: '3.3.7' | |
# architecture: x64 | |
# - name: Install dependencies | |
# run: python dev/deps.py | |
# - name: Run linter | |
# run: python dev/lint.py | |
# - name: Run tests | |
# run: python dev/tests.py | |
# env: | |
# GH_PASS: ${{ secrets.GH_PASS }} | |
# GL_PASS: ${{ secrets.GL_PASS }} | |
# BB_PASS: ${{ secrets.BB_PASS }} | |
# build-mac-33: | |
# name: Python 3.3.7 on macos-11 x64 | |
# runs-on: macos-11 | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Check pyenv | |
# id: check-pyenv | |
# uses: actions/cache@v3 | |
# with: | |
# path: ~/.pyenv | |
# key: macos-11-3.3-pyenv | |
# - name: Install Python 3.3 | |
# run: python dev/pyenv-install.py 3.3 >> $GITHUB_PATH | |
# - name: Install dependencies | |
# run: python dev/deps.py | |
# - name: Run linter | |
# run: python dev/lint.py | |
# - name: Run tests | |
# run: python dev/tests.py | |
# env: | |
# GH_PASS: ${{ secrets.GH_PASS }} | |
# GL_PASS: ${{ secrets.GL_PASS }} | |
# BB_PASS: ${{ secrets.BB_PASS }} | |
build-windows-33: | |
name: Python 3.3.5 on windows-2019 ${{ matrix.arch }} | |
runs-on: windows-2019 | |
strategy: | |
matrix: | |
arch: | |
- 'x86' | |
- 'x64' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache Python | |
id: cache-python | |
uses: actions/cache@v3 | |
with: | |
path: ~/AppData/Local/Python3.3-${{ matrix.arch }} | |
key: windows-2019-python-3.3-${{ matrix.arch }} | |
- name: Install Python 3.3.5 | |
run: python dev/python-install.py 3.3 ${{ matrix.arch }} | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | |
- name: Install dependencies | |
run: python dev/deps.py | |
- name: Run linter | |
run: python dev/lint.py | |
- name: Run tests | |
run: python dev/tests.py | |
env: | |
GH_PASS: ${{ secrets.GH_PASS }} | |
GL_PASS: ${{ secrets.GL_PASS }} | |
BB_PASS: ${{ secrets.BB_PASS }} |