-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update release-action On branch udd-upload-artifact Changes to be committed: modified: .github/workflows/release.yaml * Typo * Typo * Fix args * Fix imports, path and typos On branch udd-upload-artifact Your branch is up to date with 'origin/udd-upload-artifact'. Changes to be committed: modified: .github/workflows/release.yaml modified: .gitignore modified: pyproject.toml modified: python/farsante/h2o_dataset_create.py * Drop redundant and buggy option --interpreter It should work without it because of ENV VARS * Missing brackets
- Loading branch information
1 parent
aa42c75
commit eaa21d9
Showing
4 changed files
with
23 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,36 @@ | ||
name: Build release | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ["3.9", "3.10", "3.11"] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: Setup Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Maturin build | ||
uses: PyO3/maturin-action@v1 | ||
with: | ||
command: build | ||
args: --release | ||
args: --release --strip | ||
|
||
- name: Upload wheel | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: python-${{ matrix.python-version }}-wheels | ||
path: target/wheels/*whl | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,3 +19,6 @@ __pycache__/ | |
|
||
.env | ||
.venv | ||
|
||
# Maturin stuff | ||
*.so |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters