-
Notifications
You must be signed in to change notification settings - Fork 214
56 lines (47 loc) · 1.23 KB
/
main.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
48
49
50
51
52
53
54
55
56
name: CI
on:
push:
branches: ['main']
pull_request:
merge_group:
types: [checks_requested]
jobs:
Test:
runs-on: ubuntu-latest
env:
HARFBUZZ_SYS_NO_PKG_CONFIG: true
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
- name: Install packages
run: |
sudo apt-get update
sudo apt-get install -y libegl1-mesa-dev libgtk-3-dev libsdl2-dev cmake
- name: Install rustc target
run: rustup target add aarch64-unknown-linux-gnu
- name: Build arm64 simd
run: cargo build --target aarch64-unknown-linux-gnu
working-directory: simd
- name: Build arm64 geometry
run: cargo build --target aarch64-unknown-linux-gnu
working-directory: geometry
- name: Build
run: cargo build
- name: Test
run: cargo test
build_result:
name: Result
runs-on: ubuntu-latest
needs:
- "Test"
steps:
- name: Mark the job as successful
run: exit 0
if: success()
- name: Mark the job as unsuccessful
run: exit 1
if: "!success()"