Skip to content

Update the README with latest instructions on how to build Habitat #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Sep 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/workflows/build-cu116.properties.json

This file was deleted.

41 changes: 0 additions & 41 deletions .github/workflows/build-cu116.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .github/workflows/test-workflow.properties.json

This file was deleted.

181 changes: 0 additions & 181 deletions .github/workflows/test-workflow.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .github/workflows/whl-build-all.properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "whl-build-all",
"description": "Build all wheels"
}
150 changes: 150 additions & 0 deletions .github/workflows/whl-build-all.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,150 @@
name: whl-build-all

on:
workflow_dispatch:

jobs:
whl-build-cu102:
runs-on: [self-hosted, cu102]
steps:
- name: Display host information
run: |
uname -a
hostname
pwd
id
ls -la

- name: Fetch repository
uses: actions/checkout@v3

- name: Build Python3.7 wheel
run: |
/home/builduser/build_habitat.sh python3.7 py37

- name: Build Python3.8 wheel
run: |
/home/builduser/build_habitat.sh python3.8 py38

- name: Build Python3.9 wheel
run: |
/home/builduser/build_habitat.sh python3.9 py39

- name: Build Python3.10 wheel
run: |
/home/builduser/build_habitat.sh python3.10 py310

- name: Upload wheel artifact
uses: actions/upload-artifact@v3
with:
name: wheels-cu102
path: analyzer/dist/*.whl


whl-build-cu111:
runs-on: [self-hosted, cu111]
steps:
- name: Display host information
run: |
uname -a
hostname
pwd
id
ls -la

- name: Fetch repository
uses: actions/checkout@v3

- name: Build Python3.7 wheel
run: |
/home/builduser/build_habitat.sh python3.7 py37

- name: Build Python3.8 wheel
run: |
/home/builduser/build_habitat.sh python3.8 py38

- name: Build Python3.9 wheel
run: |
/home/builduser/build_habitat.sh python3.9 py39

- name: Build Python3.10 wheel
run: |
/home/builduser/build_habitat.sh python3.10 py310

- name: Upload wheel artifact
uses: actions/upload-artifact@v3
with:
name: wheels-cu111
path: analyzer/dist/*.whl

whl-build-cu113:
runs-on: [self-hosted, cu113]
steps:
- name: Display host information
run: |
uname -a
hostname
pwd
id
ls -la

- name: Fetch repository
uses: actions/checkout@v3

- name: Build Python3.7 wheel
run: |
/home/builduser/build_habitat.sh python3.7 py37

- name: Build Python3.8 wheel
run: |
/home/builduser/build_habitat.sh python3.8 py38

- name: Build Python3.9 wheel
run: |
/home/builduser/build_habitat.sh python3.9 py39

- name: Build Python3.10 wheel
run: |
/home/builduser/build_habitat.sh python3.10 py310

- name: Upload wheel artifact
uses: actions/upload-artifact@v3
with:
name: wheels-cu113
path: analyzer/dist/*.whl

whl-build-cu116:
runs-on: [self-hosted, cu116]
steps:
- name: Display host information
run: |
uname -a
hostname
pwd
id
ls -la

- name: Fetch repository
uses: actions/checkout@v3

- name: Build Python3.7 wheel
run: |
/home/builduser/build_habitat.sh python3.7 py37

- name: Build Python3.8 wheel
run: |
/home/builduser/build_habitat.sh python3.8 py38

- name: Build Python3.9 wheel
run: |
/home/builduser/build_habitat.sh python3.9 py39

- name: Build Python3.10 wheel
run: |
/home/builduser/build_habitat.sh python3.10 py310

- name: Upload wheel artifact
uses: actions/upload-artifact@v3
with:
name: wheels-cu116
path: analyzer/dist/*.whl
Loading