Skip to content

adde omp buildscript for fat arm64 arm64e and x86 #122

adde omp buildscript for fat arm64 arm64e and x86

adde omp buildscript for fat arm64 arm64e and x86 #122

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Molecular plus
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build_windows37:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7.7
uses: actions/setup-python@v2
with:
python-version: 3.7.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest cython
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --exit-zero --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build with Cython
id: build
run: echo "::set-output name=version::$(python pack_molecular.py)"
- name: Upload windows zip
uses: actions/upload-artifact@v2
with:
name: molecular-plus_${{steps.build.outputs.version}}_37_win.zip
path: ./molecular-plus_${{steps.build.outputs.version}}_37_win.zip
build_linux37:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7.7
uses: actions/setup-python@v2
with:
python-version: 3.7.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest cython
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --exit-zero --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build with Cython
id: build
run: echo "::set-output name=version::$(python pack_molecular.py)"
- name: Upload linux zip
uses: actions/upload-artifact@v2
with:
name: molecular-plus_${{steps.build.outputs.version}}_37m_linux.zip
path: ./molecular-plus_${{steps.build.outputs.version}}_37m_linux.zip
build_macos37:
runs-on: macos-11
outputs:
version: ${{steps.build.outputs.version}}
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7.7
uses: actions/setup-python@v2
with:
python-version: 3.7.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest cython
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --exit-zero --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build with Cython
id: build
run: echo "::set-output name=version::$(python pack_molecular.py)"
- name: Upload mac zip
uses: actions/upload-artifact@v2
with:
name: molecular-plus_${{steps.build.outputs.version}}_37m_macos.zip
path: ./molecular-plus_${{steps.build.outputs.version}}_37m_macos.zip
build_windows39:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9.7
uses: actions/setup-python@v2
with:
python-version: 3.9.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest cython
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --exit-zero --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build with Cython
id: build
run: echo "::set-output name=version::$(python pack_molecular.py)"
- name: Upload windows zip
uses: actions/upload-artifact@v2
with:
name: molecular-plus_${{steps.build.outputs.version}}_39_win.zip
path: ./molecular-plus_${{steps.build.outputs.version}}_39_win.zip
build_linux39:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9.7
uses: actions/setup-python@v2
with:
python-version: 3.9.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest cython
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --exit-zero --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build with Cython
id: build
run: echo "::set-output name=version::$(python pack_molecular.py)"
- name: Upload linux zip
uses: actions/upload-artifact@v2
with:
name: molecular-plus_${{steps.build.outputs.version}}_39_linux.zip
path: ./molecular-plus_${{steps.build.outputs.version}}_39_linux.zip
build_macos39:
runs-on: macos-11
outputs:
version: ${{steps.build.outputs.version}}
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9.7
uses: actions/setup-python@v2
with:
python-version: 3.9.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest cython
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --exit-zero --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build with Cython
id: build
run: echo "::set-output name=version::$(python pack_molecular.py)"
- name: Upload mac zip
uses: actions/upload-artifact@v2
with:
name: molecular-plus_${{steps.build.outputs.version}}_39_macos.zip
path: ./molecular-plus_${{steps.build.outputs.version}}_39_macos.zip
build_windows310:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10.2
uses: actions/setup-python@v2
with:
python-version: 3.10.2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest cython
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --exit-zero --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build with Cython
id: build
run: echo "::set-output name=version::$(python pack_molecular.py)"
- name: Upload windows zip
uses: actions/upload-artifact@v2
with:
name: molecular-plus_${{steps.build.outputs.version}}_310_win.zip
path: ./molecular-plus_${{steps.build.outputs.version}}_310_win.zip
build_linux310:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10.2
uses: actions/setup-python@v2
with:
python-version: 3.10.2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest cython
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --exit-zero --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build with Cython
id: build
run: echo "::set-output name=version::$(python pack_molecular.py)"
- name: Upload linux zip
uses: actions/upload-artifact@v2
with:
name: molecular-plus_${{steps.build.outputs.version}}_310_linux.zip
path: ./molecular-plus_${{steps.build.outputs.version}}_310_linux.zip
build_macos310:
runs-on: macos-11
outputs:
version: ${{steps.build.outputs.version}}
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10.2
uses: actions/setup-python@v2
with:
python-version: 3.10.2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest cython
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --exit-zero --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build with Cython
id: build
run: echo "::set-output name=version::$(python pack_molecular.py)"
- name: Upload mac zip
uses: actions/upload-artifact@v2
with:
name: molecular-plus_${{steps.build.outputs.version}}_310_macos.zip
path: ./molecular-plus_${{steps.build.outputs.version}}_310_macos.zip