Skip to content

Commit 5336f21

Browse files
committed
improve CI configruation
Signed-off-by: Wojciech Ozga <woz@zurich.ibm.com>
1 parent 5e6bf52 commit 5336f21

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,18 @@ jobs:
3434
- name: install cargo utils
3535
run: cargo install cargo-binutils
3636
- name: build riscv toolchain
37-
run: ACE_DIR=$(pwd)/build/ MAKEFLAGS="--silent -j4" make devtools
37+
run: ACE_DIR=$(pwd)/build/ make --silent -j8 devtools
3838
- name: build emulator
39-
run: ACE_DIR=$(pwd)/build/ MAKEFLAGS="--silent -j4" make emulator
39+
run: ACE_DIR=$(pwd)/build/ make --silent -j8 emulator
4040
- name: build tools
41-
run: ACE_DIR=$(pwd)/build/ MAKEFLAGS="--silent -j4" make tools
41+
run: ACE_DIR=$(pwd)/build/ make --silent -j8 tools
4242
- name: build hypervisor
43-
run: ACE_DIR=$(pwd)/build/ MAKEFLAGS="--silent -j4" make hypervisor
43+
run: ACE_DIR=$(pwd)/build/ make --silent -j8 hypervisor
4444
- name: build firmware
45-
run: ACE_DIR=$(pwd)/build/ MAKEFLAGS="--silent -j4" make firmware
45+
run: ACE_DIR=$(pwd)/build/ make --silent -j8 firmware
4646
- name: build confidential vms
47-
run: ACE_DIR=$(pwd)/build/ MAKEFLAGS="--silent -j4" make confidential_vms
47+
run: ACE_DIR=$(pwd)/build/ make --silent -j8 confidential_vms
48+
- name: rebuild all to include changes to cvm disk
49+
run: ACE_DIR=$(pwd)/build/ make --silent -j8
4850
- name: run tests on confidential vms
4951
run: ACE_DIR=$(pwd)/build/ PATH=$PATH:$(pwd)/build/tools ace test

0 commit comments

Comments
 (0)