-
Notifications
You must be signed in to change notification settings - Fork 181
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
Release Updates #537
Open
pranavsuku-db
wants to merge
58
commits into
main
Choose a base branch
from
pranavsuku-test-release-github
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Release Updates #537
Changes from all commits
Commits
Show all changes
58 commits
Select commit
Hold shift + click to select a range
f182b9e
added marturin generated .yml
pranavsuku-db 42585e7
new worflow file
pranavsuku-db 5c1f263
Merge branch 'main' of github.com:delta-io/delta-sharing into pranavs…
pranavsuku-db 3998afe
only linux
pranavsuku-db f021f3a
removed extra file
pranavsuku-db 4959110
only x86
pranavsuku-db 8f55e44
increasing node size
pranavsuku-db f62659b
better env
pranavsuku-db 5ff9f01
making heap size really big
pranavsuku-db 9289dc4
get rid of sdist
pranavsuku-db 11320cf
get rid of sdist from release
pranavsuku-db 2f28f4e
hyperjson approach
pranavsuku-db ddad60c
new approach
pranavsuku-db fe7207f
new approach
pranavsuku-db 9715c59
new approach 2
pranavsuku-db a154210
new approach 2
pranavsuku-db df375ce
remove windows
pranavsuku-db 4a7ccc6
more os architectures
pranavsuku-db 7b91a2b
fix for cross
pranavsuku-db 817577a
fix for cross
pranavsuku-db 19c12e9
basic linux and both mac
pranavsuku-db 7a1fad5
basic linux and both mac
pranavsuku-db ad8674f
86 linux and windows, 86 and arm mac
pranavsuku-db 08a63d5
86 linux, 86 and arm mac, 86_64 and 64 windows
pranavsuku-db 02a77bb
86 linux and windows, 86 and arm mac
pranavsuku-db 648b3c2
adding arm on linux
pranavsuku-db 67bfa23
adding arm on linux
pranavsuku-db 939626c
adding arm on linux
pranavsuku-db 4b01d60
adding arm on linux
pranavsuku-db 9e8e1f4
adding arm on linux
pranavsuku-db 4d83b9a
back to both for mac, x86 for windows, x86 for linux
pranavsuku-db d78db34
adding arm on linux
pranavsuku-db 228ddcd
adding arm on linux
pranavsuku-db 4e4be8b
adding arm on linux
pranavsuku-db 0412e79
adding arm on linux
pranavsuku-db f7bb31f
2 mac, 1 windows, 1 linux back again
pranavsuku-db a4dd46b
adding arm on linux
pranavsuku-db dd0d6d6
adding arm on linux
pranavsuku-db 8bbbf34
adding arm on linux
pranavsuku-db 31e4885
mac has arm and intel, windows and linux only have intel
pranavsuku-db 68b9c21
adding arm on linux
pranavsuku-db 7b6c406
adding arm on linux
pranavsuku-db 9554f28
adding arm on linux
pranavsuku-db ae8099b
adding arm on linux
pranavsuku-db c4a0fa2
mac has arm and intel, windows and linux only have intel
pranavsuku-db b741f48
removing rust install
pranavsuku-db 089f97a
adding arm on linux
pranavsuku-db c57b6ff
adding arm on linux
pranavsuku-db ee4f312
adding arm on linux
pranavsuku-db b6200ff
adding arm on linux
pranavsuku-db 0c07a63
adding arm on linux
pranavsuku-db cef94e6
adding arm on linux
pranavsuku-db e86f93e
adding arm on linux
pranavsuku-db abf756a
adding arm on linux
pranavsuku-db 2a7d6b4
reverting back ci
pranavsuku-db 849d3e5
trying arm linux
pranavsuku-db 3b8fda2
trying arm linux
pranavsuku-db bbdd4b7
yml for mac arm and x86, windows x86_64, linux x86_64
pranavsuku-db File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: Build wheels | ||
|
||
on: | ||
push: | ||
branches: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. and see if we can have more conditions in this. |
||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
python-version: [3.8] | ||
arch: [x86_64, arm64] | ||
include: | ||
- os: macos-latest | ||
arch: x86_64 | ||
- os: macos-latest | ||
arch: arm64 | ||
- os: ubuntu-latest | ||
arch: x86_64 | ||
- os: windows-latest | ||
arch: x86_64 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install maturin | ||
run: pip install maturin | ||
|
||
- name: Build wheel (x86_64 macOS) | ||
if: matrix.os == 'macos-latest' && matrix.arch == 'x86_64' | ||
run: | | ||
rustup target add x86_64-apple-darwin | ||
cd python/delta-kernel-python | ||
maturin build --release --target x86_64-apple-darwin | ||
shell: bash | ||
|
||
- name: Build wheel (ARM macOS) | ||
if: matrix.os == 'macos-latest' && matrix.arch == 'arm64' | ||
run: | | ||
rustup target add aarch64-apple-darwin | ||
cd python/delta-kernel-python | ||
maturin build --release --target aarch64-apple-darwin | ||
shell: bash | ||
|
||
- name: Build wheel (x86_64 Windows) | ||
if: runner.os == 'Windows' | ||
run: | | ||
cd python/delta-kernel-python | ||
maturin build --release | ||
shell: powershell | ||
|
||
- name: Build wheel (x86_64 Linux) | ||
if: matrix.os == 'ubuntu-latest' | ||
run: | | ||
cd python/delta-kernel-python | ||
maturin build --release | ||
shell: bash | ||
|
||
- name: Upload wheels | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: wheels | ||
path: python/delta-kernel-python/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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's rename the file, and change this name to be more meaningful.