Skip to content

Commit

Permalink
More artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
romainthomas committed Mar 26, 2022
1 parent aa58008 commit f891891
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 4 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,19 @@ jobs:
CCACHE_COMPRESS: 1
run: |
bash scripts/osx/package_sdk.sh
- name: 'Upload SDK Artifact'
if: matrix.python-version == '3.9' # Build the SDk only with Python 3.9
uses: actions/upload-artifact@v3
with:
name: osx-sdk
path: build/*.tar.gz
retention-days: 3
- name: 'Upload Python Wheel Artifact - ${{ matrix.python-version }}'
uses: actions/upload-artifact@v3
with:
name: osx-wheel-${{ matrix.python-version }}
path: dist/*.whl
retention-days: 3
- name: Deploy
env:
LIEF_AUTOMATIC_BUILDS_KEY: ${{ secrets.LIEF_AUTOMATIC_BUILDS_KEY }}
Expand Down
15 changes: 14 additions & 1 deletion .github/workflows/windows-x64-all.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

name: LIEF Windows x64 Tests
name: LIEF Windows x64

on:
push:
Expand Down Expand Up @@ -66,6 +66,19 @@ jobs:
if: matrix.python-version == 3.9
run: |
python ./scripts/windows/package_sdk.py
- name: 'Upload SDK Artifact'
if: matrix.python-version == 3.9
uses: actions/upload-artifact@v3
with:
name: windows-x64-sdk
path: build/*.zip
retention-days: 3
- name: 'Upload Python Wheel Artifact - ${{ matrix.python-version }}'
uses: actions/upload-artifact@v3
with:
name: windows-x64-wheel-${{ matrix.python-version }}
path: dist/*.whl
retention-days: 3
- name: 📊 Print sccache stats
run: sccache --show-stats
- name: 🛑 Stop sccache server
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-x64-quick.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

name: LIEF Windows x64 Quick Tests
name: LIEF Windows x64 Quick

on:
push:
Expand Down
15 changes: 14 additions & 1 deletion .github/workflows/windows-x86-all.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

name: LIEF Windows x86 Tests
name: LIEF Windows x86

on:
push:
Expand Down Expand Up @@ -66,6 +66,19 @@ jobs:
if: matrix.python-version == 3.9
run: |
python ./scripts/windows/package_sdk.py
- name: 'Upload SDK Artifact'
if: matrix.python-version == 3.9
uses: actions/upload-artifact@v3
with:
name: windows-x86-sdk
path: build/*.zip
retention-days: 3
- name: 'Upload Python Wheel Artifact - ${{ matrix.python-version }}'
uses: actions/upload-artifact@v3
with:
name: windows-x86-wheel-${{ matrix.python-version }}
path: dist/*.whl
retention-days: 3
- name: 📊 Print sccache stats
run: sccache --show-stats
- name: 🛑 Stop sccache server
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-x86-quick.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

name: LIEF Windows x86 Quick Tests
name: LIEF Windows x86 Quick

on:
push:
Expand Down

0 comments on commit f891891

Please sign in to comment.