ci: Update GitHub Make jobs

This commit is contained in:
Mizux Seiha
2021-09-23 11:06:48 +02:00
parent 623706668c
commit ed4c573103
11 changed files with 75 additions and 36 deletions

View File

@@ -8,21 +8,25 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Check cmake
run: cmake --version
- name: Check java
run: java -version
- name: Swig install
run: sudo apt install -y swig
- name: Check swig
run: swig -version
- name: Check java
run: java -version
- name: Check make
run: make --version
- name: Check system
run: make detect_port
- name: Check Java
run: make detect_java
- name: Build third party
run: make third_party -j4
- name: Build C++
run: make cc -j4
- name: Build Java
run: make java -j4
- name: Test
- name: Test Java
run: make test_java -j4
- name: Create maven package
run: make package_java