25
26
27
28
29
30
31
|
run: ./configure ${{ matrix.configure_flags }}
- name: make
run: make -j$(sysctl -n hw.logicalcpu)
- name: make check
run: make check
- name: make install
run: sudo make install
|
>
>
>
>
|
25
26
27
28
29
30
31
32
33
34
35
|
run: ./configure ${{ matrix.configure_flags }}
- name: make
run: make -j$(sysctl -n hw.logicalcpu)
- name: make check
run: make check
- name: make install
run: sudo make install
- name: C++ test
run: |
objfw-compile -o cxxtest .github/workflows/CXXTest.mm
./cxxtest
|