v2.6.1 #130
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
name: build | |
on: | |
push: | |
paths-ignore: ["**.md"] | |
branches: [ master ] | |
pull_request: | |
paths-ignore: ["**.md"] | |
branches: [ master ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build-corss: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
target: | |
- x86_64-unknown-linux-gnu | |
- x86_64-unknown-linux-musl | |
- x86_64-pc-windows-gnu | |
- x86_64-linux-android | |
- aarch64-unknown-linux-gnu | |
- aarch64-unknown-linux-musl | |
- aarch64-linux-android | |
- arm-unknown-linux-gnueabi | |
- arm-unknown-linux-gnueabihf | |
- arm-unknown-linux-musleabi | |
- arm-unknown-linux-musleabihf | |
- armv7-unknown-linux-gnueabi | |
- armv7-unknown-linux-gnueabihf | |
- armv7-unknown-linux-musleabi | |
- armv7-unknown-linux-musleabihf | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly | |
targets: ${{ matrix.target }} | |
- name: install cross | |
run: cargo install cross --git https://github.com/cross-rs/cross | |
- name: compile | |
run: cross build --release --target=${{ matrix.target }} | |
- name: upload unix binary | |
if: "!contains(matrix.target, 'windows')" | |
uses: actions/upload-artifact@v4 | |
with: | |
name: realm-${{ matrix.target }} | |
path: target/${{ matrix.target }}/release/realm | |
- name: upload windows binary | |
if: "contains(matrix.target, 'windows')" | |
uses: actions/upload-artifact@v4 | |
with: | |
name: realm-${{ matrix.target }} | |
path: target/${{ matrix.target }}/release/realm.exe | |
build-windows: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
target: | |
- x86_64-pc-windows-msvc | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly | |
targets: ${{ matrix.target }} | |
- name: compile | |
run: cargo build --release --target=${{ matrix.target }} | |
- name: upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: realm-${{ matrix.target }} | |
path: target/${{ matrix.target }}/release/realm.exe | |
build-apple: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
target: | |
- x86_64-apple-darwin | |
- aarch64-apple-darwin | |
- aarch64-apple-ios | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install toolchain | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly | |
targets: ${{ matrix.target }} | |
- name: compile | |
run: cargo build --release --target=${{ matrix.target }} | |
- name: upload | |
uses: actions/upload-artifact@v4 | |
with: | |
name: realm-${{ matrix.target }} | |
path: target/${{ matrix.target }}/release/realm |