-
Notifications
You must be signed in to change notification settings - Fork 1
59 lines (55 loc) · 1.52 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
48
49
50
51
52
53
54
55
56
57
58
59
name: "Build project"
on:
pull_request:
jobs:
formatting:
name: cargo fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Rustfmt Check
run: cargo fmt --check --manifest-path adblock-rs/Cargo.toml
build:
name: build project
runs-on: ubuntu-latest
needs: formatting
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Build rust library
run: |
cargo build --manifest-path adblock-rs/Cargo.toml
- uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
architecture: x64
- name: Build java library
run: mvn package
cargo-test:
name: cargo test
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Build rust library
run: cargo test --all --manifest-path adblock-rs/Cargo.toml
mvn-test:
name: mvn test
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Build rust library
run: |
cargo build --manifest-path adblock-rs/Cargo.toml
- uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
architecture: x64
- name: Run test by maven
run: mvn test