Projects STRLCPY LIEF Commits f8918911
🤬
  • ■ ■ ■ ■ ■ ■
    .github/workflows/osx.yml
    skipped 67 lines
    68 68   CCACHE_COMPRESS: 1
    69 69   run: |
    70 70   bash scripts/osx/package_sdk.sh
     71 + - name: 'Upload SDK Artifact'
     72 + if: matrix.python-version == '3.9' # Build the SDk only with Python 3.9
     73 + uses: actions/upload-artifact@v3
     74 + with:
     75 + name: osx-sdk
     76 + path: build/*.tar.gz
     77 + retention-days: 3
     78 + - name: 'Upload Python Wheel Artifact - ${{ matrix.python-version }}'
     79 + uses: actions/upload-artifact@v3
     80 + with:
     81 + name: osx-wheel-${{ matrix.python-version }}
     82 + path: dist/*.whl
     83 + retention-days: 3
    71 84   - name: Deploy
    72 85   env:
    73 86   LIEF_AUTOMATIC_BUILDS_KEY: ${{ secrets.LIEF_AUTOMATIC_BUILDS_KEY }}
    skipped 9 lines
  • ■ ■ ■ ■ ■ ■
    .github/workflows/windows-x64-all.yml
    1 1   
    2  -name: LIEF Windows x64 Tests
     2 +name: LIEF Windows x64
    3 3   
    4 4  on:
    5 5   push:
    skipped 60 lines
    66 66   if: matrix.python-version == 3.9
    67 67   run: |
    68 68   python ./scripts/windows/package_sdk.py
     69 + - name: 'Upload SDK Artifact'
     70 + if: matrix.python-version == 3.9
     71 + uses: actions/upload-artifact@v3
     72 + with:
     73 + name: windows-x64-sdk
     74 + path: build/*.zip
     75 + retention-days: 3
     76 + - name: 'Upload Python Wheel Artifact - ${{ matrix.python-version }}'
     77 + uses: actions/upload-artifact@v3
     78 + with:
     79 + name: windows-x64-wheel-${{ matrix.python-version }}
     80 + path: dist/*.whl
     81 + retention-days: 3
    69 82   - name: 📊 Print sccache stats
    70 83   run: sccache --show-stats
    71 84   - name: 🛑 Stop sccache server
    skipped 35 lines
  • ■ ■ ■ ■
    .github/workflows/windows-x64-quick.yml
    1 1   
    2  -name: LIEF Windows x64 Quick Tests
     2 +name: LIEF Windows x64 Quick
    3 3   
    4 4  on:
    5 5   push:
    skipped 58 lines
  • ■ ■ ■ ■ ■ ■
    .github/workflows/windows-x86-all.yml
    1 1   
    2  -name: LIEF Windows x86 Tests
     2 +name: LIEF Windows x86
    3 3   
    4 4  on:
    5 5   push:
    skipped 60 lines
    66 66   if: matrix.python-version == 3.9
    67 67   run: |
    68 68   python ./scripts/windows/package_sdk.py
     69 + - name: 'Upload SDK Artifact'
     70 + if: matrix.python-version == 3.9
     71 + uses: actions/upload-artifact@v3
     72 + with:
     73 + name: windows-x86-sdk
     74 + path: build/*.zip
     75 + retention-days: 3
     76 + - name: 'Upload Python Wheel Artifact - ${{ matrix.python-version }}'
     77 + uses: actions/upload-artifact@v3
     78 + with:
     79 + name: windows-x86-wheel-${{ matrix.python-version }}
     80 + path: dist/*.whl
     81 + retention-days: 3
    69 82   - name: 📊 Print sccache stats
    70 83   run: sccache --show-stats
    71 84   - name: 🛑 Stop sccache server
    skipped 35 lines
  • ■ ■ ■ ■
    .github/workflows/windows-x86-quick.yml
    1 1   
    2  -name: LIEF Windows x86 Quick Tests
     2 +name: LIEF Windows x86 Quick
    3 3   
    4 4  on:
    5 5   push:
    skipped 58 lines
Please wait...
Page is in error, reload to recover