Skip to content

Commit

Permalink
actions: add Manylinux build job
Browse files Browse the repository at this point in the history
Signed-off-by: Matteo Cafasso <noxdafox@gmail.com>
  • Loading branch information
noxdafox committed Aug 30, 2023
1 parent c6a5137 commit 677852a
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/action.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: CLIPSPy build job
on: [push, pull_request]
jobs:
build:
test:
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -22,3 +22,18 @@ jobs:
- name: Run tests
run: |
make test
build-manylinux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build Manylinux Container
run: |
docker build -t clipspy-build-wheels:latest -f manylinux/Dockerfile .
- name: Build Manylinux packages
run: |
docker run --rm -v `pwd`/manylinux/wheelhouse:/io/wheelhouse clipspy-build-wheels:latest
- name: Store build artifacts
uses: actions/upload-artifact@v3
with:
name: manylinux-build
path: manylinux/wheelhouse

0 comments on commit 677852a

Please sign in to comment.