mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 02:27:40 +08:00
Merge pull request #581 from meilisearch/publish-armv8-binary
Publish an aarch64 binary on releases
This commit is contained in:
commit
241b842ef7
24
.github/workflows/publish-binaries.yml
vendored
24
.github/workflows/publish-binaries.yml
vendored
@ -61,3 +61,27 @@ jobs:
|
|||||||
file: target/release/meilisearch
|
file: target/release/meilisearch
|
||||||
asset_name: meilisearch-linux-armv7
|
asset_name: meilisearch-linux-armv7
|
||||||
tag: ${{ github.ref }}
|
tag: ${{ github.ref }}
|
||||||
|
|
||||||
|
publish-armv8:
|
||||||
|
name: Publish for ARMv8
|
||||||
|
runs-on: ubuntu-18.04
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1.0.0
|
||||||
|
- uses: uraimo/run-on-arch-action@v1.0.7
|
||||||
|
id: runcmd
|
||||||
|
with:
|
||||||
|
architecture: aarch64 # aka ARMv8
|
||||||
|
distribution: ubuntu18.04
|
||||||
|
run: |
|
||||||
|
apt update
|
||||||
|
apt install -y curl gcc make
|
||||||
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal --default-toolchain stable
|
||||||
|
source $HOME/.cargo/env
|
||||||
|
cargo build --release --locked
|
||||||
|
- name: Upload the binary to release
|
||||||
|
uses: svenstaro/upload-release-action@v1-release
|
||||||
|
with:
|
||||||
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
file: target/release/meilisearch
|
||||||
|
asset_name: meilisearch-linux-armv8
|
||||||
|
tag: ${{ github.ref }}
|
||||||
|
@ -5,3 +5,4 @@
|
|||||||
- Sanitize the content displayed in the web interface (#539)
|
- Sanitize the content displayed in the web interface (#539)
|
||||||
- Add support of nested null, boolean and seq values (#571 and #568, #574)
|
- Add support of nested null, boolean and seq values (#571 and #568, #574)
|
||||||
- Fixed the core benchmark (#576)
|
- Fixed the core benchmark (#576)
|
||||||
|
- Publish an ARMv7 and ARMv8 binaries on releases (#540 and #581)
|
||||||
|
Loading…
Reference in New Issue
Block a user