Skip to content

Use step.with.args instead of run. #12

Use step.with.args instead of run.

Use step.with.args instead of run. #12

# 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
steps:
- uses: actions/checkout@v3
- name: Clean up old binaries
run: rm ${{ env.PYDEVD_ATTACH_TO_PROCESS }}/*.so
- name: Compile binaries
uses: docker://${{ matrix.container-image }}

Check failure on line 73 in .github/workflows/attach_to_process.yml

View workflow run for this annotation

GitHub Actions / attach_to_process

Invalid workflow file

The workflow is not valid. .github/workflows/attach_to_process.yml (Line: 73, Col: 15): Unrecognized named-value: 'matrix'. Located at position 1 within expression: matrix.container-image .github/workflows/attach_to_process.yml (Line: 75, Col: 17): Unrecognized named-value: 'PYDEVD_ATTACH_TO_PROCESS'. Located at position 1 within expression: PYDEVD_ATTACH_TO_PROCESS
with:
args: >
g++ -std=c++11 -shared -fPIC -nostartfiles
-o $GITHUB_WORKSPACE/${{ PYDEVD_ATTACH_TO_PROCESS }}/attach_linux_${{ matrix.arch }}.so
$GITHUB_WORKSPACE/${{ PYDEVD_ATTACH_TO_PROCESS }}/linux_and_mac/attach.cpp
- name: Upload binaries
uses: actions/upload-artifact@v3
with:
name: pydevd_attach_to_process-linux-${{ matrix.arch }}
path: ${{ env.PYDEVD_ATTACH_TO_PROCESS }}/*.so