Skip to content

try using multiprocessing queues for windows os #74

try using multiprocessing queues for windows os

try using multiprocessing queues for windows os #74

Workflow file for this run

name: ci
on:
push:
branches:
- develop
- release/**
- hotfix/**
- feat/DEV-2479-upgrade-py38
tags:
- '*'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- macos-11
- macos-12
- macos-13
- ubuntu-20.04
- ubuntu-22.04
- windows-2019
- windows-2022
python:
- 3.8
env:
GDC_CLIENT_ZIP: 'gdc-client.zip'
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Run Tests
if: matrix.os != 'windows-latest'
run: |
python -m pip install --upgrade pip
pip install tox
tox -e py
- name: Package
run: |
cd bin
pip install virtualenv
. ./package
echo "GDC_CLIENT_ZIP=$GDC_CLIENT_ZIP" >> $GITHUB_ENV
shell: bash
- uses: actions/upload-artifact@v2
with:
name: ${{ env.GDC_CLIENT_ZIP }}-py${{ matrix.python }}-${{ matrix.os }}
path: bin/gdc-client_*.zip