Skip to content

Commit

Permalink
use latest rust for ubuntu too
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Arruda committed Jul 30, 2024
1 parent 1288a35 commit fbfefdb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
uses: actions/checkout@v4
with:
ref: stable
- name: Install latest rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build shared object
run: |
bash ./utils/build-linux-so.sh
Expand All @@ -33,6 +37,10 @@ jobs:
uses: actions/checkout@v4
with:
ref: stable
- name: Install latest rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build extensions
run: |
cd jyafn-ext
Expand All @@ -52,6 +60,10 @@ jobs:
uses: actions/checkout@v4
with:
ref: stable
- name: Install latest rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build wheels
run: |
bash ./utils/build-linux-wheels.sh
Expand Down
4 changes: 4 additions & 0 deletions utils/release-crates-io.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
set -e

cd jyafn/
cargo publish

0 comments on commit fbfefdb

Please sign in to comment.