-
Notifications
You must be signed in to change notification settings - Fork 6
47 lines (43 loc) · 1.23 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Build
on:
push:
branches: [ "master", "ci" ]
pull_request:
branches: [ "master", "ci" ]
env:
CARGO_TERM_COLOR: always
jobs:
build-win64:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: cache vcpkg
uses: actions/cache@v3
with:
key: vcpkg-win64
path: C:/vcpkg/installed
- name: setup vcpkg
run: vcpkg install libheif:x64-windows-static
- name: Build
run: |
$env:VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT
$env:RUSTFLAGS='-Ctarget-feature=+crt-static'
cargo build --release --all-features
- uses: actions/upload-artifact@v3
with:
name: win64
path: target/release/imgfind.exe
build-android:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: setup
run: |
wget https://github.com/flaribbit/imgfind/releases/download/model/libheif.so -O .github/libheif.so
cargo install cross --git https://github.com/cross-rs/cross
- name: Build
run: cross build --release --all-features --target aarch64-linux-android
- uses: actions/upload-artifact@v3
with:
name: android-aarch64
path: target/aarch64-linux-android/release/imgfind