Skip to content

Commit a9616bd

Browse files
committed
CI: Add Restore step to make it easier to analyze build times
1 parent 1c7cfae commit a9616bd

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/main.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,17 @@ jobs:
3636

3737
- name: Setup
3838
shell: bash
39-
run: build/build.sh download_llvm -platform $PLATFORM
40-
39+
run: |
40+
build/build.sh generate -platform $PLATFORM
41+
build/build.sh download_llvm -platform $PLATFORM
42+
43+
- name: Restore
44+
shell: bash
45+
run: build/build.sh restore -platform $PLATFORM
46+
4147
- name: Build
4248
shell: bash
43-
run: build/build.sh -platform $PLATFORM
49+
run: build/build.sh -platform $PLATFORM -build_only
4450

4551
- name: Test
4652
shell: bash

0 commit comments

Comments
 (0)