-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (45 loc) · 1.36 KB
/
deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Deploy tagged releases.
name: Deploy Release
on:
push:
tags:
- '*'
# This is for debugging.
# on:
# push:
# branches: [ master ]
# pull_request:
# branches: [ master ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TWINE_TOKEN }}
jobs:
wheels:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Dependencies
run: ./test_scripts/install_deps_github_ubuntu.sh && pip install twine
- name: Install Package
run: pip install .
- name: Run Serial Test
run: MPI_DISABLE=1 python3 -c 'import pshmem.test; pshmem.test.run()'
- name: Run MPI Test on 1 Process
run: mpirun -np 1 python3 -c 'import pshmem.test; pshmem.test.run()'
- name: Run MPI Test on 2 Processes
run: mpirun -np 2 python3 -c 'import pshmem.test; pshmem.test.run()'
- name: Build source package
run: rm -rf dist && python setup.py sdist
- name: Build wheels
run: mkdir -p wheelhouse && pip wheel -w wheelhouse .
- name: Upload to PyPI
run: |
python -m twine upload dist/*.tar.gz && python -m twine upload wheelhouse/pshmem*.whl