-
Notifications
You must be signed in to change notification settings - Fork 8
47 lines (37 loc) · 918 Bytes
/
ci.yml
File metadata and controls
47 lines (37 loc) · 918 Bytes
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: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Rust (nightly)
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustc, rust-src, cargo
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '21'
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Set up Gradle
uses: gradle/gradle-build-action@v2
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y make
- name: Build all components
run: make all
- name: Run integration tests
run: python3 Tester.py