forked from microsoft/debugpy
-
Notifications
You must be signed in to change notification settings - Fork 0
86 lines (69 loc) · 2.44 KB
/
attach_to_process.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Used to build binaries under src/debugpy/_vendored/pydevd/pydevd_attach_to_process
name: attach_to_process
on:
workflow_dispatch:
push:
env:
PYDEVD_ATTACH_TO_PROCESS: src/debugpy/_vendored/pydevd/pydevd_attach_to_process
jobs:
windows-binaries:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Compile binaries
shell: powershell
run: |
rm ${{ env.PYDEVD_ATTACH_TO_PROCESS }}\* -include *.exe,*.dll,*.pdb
cd ${{ env.PYDEVD_ATTACH_TO_PROCESS }}\windows
.\compile_windows.bat
- name: Upload binaries
uses: actions/upload-artifact@v3
with:
name: pydevd_attach_to_process-windows
path: |
${{ env.PYDEVD_ATTACH_TO_PROCESS }}\*.exe
${{ env.PYDEVD_ATTACH_TO_PROCESS }}\*.dll
${{ env.PYDEVD_ATTACH_TO_PROCESS }}\*.pdb
mac-binaries:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Compile binaries
shell: bash
run: |
rm ${{ env.PYDEVD_ATTACH_TO_PROCESS }}/*.dylib
cd ${{ env.PYDEVD_ATTACH_TO_PROCESS }}/linux_and_mac
bash ./compile_mac.sh
- name: Upload binaries
uses: actions/upload-artifact@v3
with:
name: pydevd_attach_to_process-macos
path: ${{ env.PYDEVD_ATTACH_TO_PROCESS }}/*.dylib
linux-binaries:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
arch: [x86, amd64]
include:
- arch: x86
container-image: quay.io/pypa/manylinux2014_i686
- arch: amd64
container-image: quay.io/pypa/manylinux2014_x86_64
env:
CONTAINER_IMAGE: ${{ matrix.container-image }}
INPUT_FILE: ${{ env.PYDEVD_ATTACH_TO_PROCESS }}/linux_and_mac/attach.cpp
OUTPUT_FILE: ${{ env.PYDEVD_ATTACH_TO_PROCESS }}/attach_linux_${{ matrix.arch }}.so
steps:
- uses: actions/checkout@v3
- name: Clean up old binaries
run: rm ${{ env.PYDEVD_ATTACH_TO_PROCESS }}/*.so
- name: Compile binaries
uses: docker://${{ env.CONTAINER_IMAGE }}
with:
args: g++ -std=c++11 -shared -fPIC -nostartfiles $GITHUB_WORKSPACE/$INPUT_FILE -o $GITHUB_WORKSPACE/$OUTPUT_FILE
- name: Upload binaries
uses: actions/upload-artifact@v3
with:
name: pydevd_attach_to_process-linux-${{ matrix.arch }}
path: ${{ env.PYDEVD_ATTACH_TO_PROCESS }}/*.so