Commit e510726
committed
ci: Optimize and consolidate CI/CD workflows
This commit introduces significant optimizations and consolidation to the GitHub Actions workflows to improve performance and maintainability.
### Key Changes:
- **Consolidated CI Jobs:**
- In `ci.yml`, the previous `build`, `lint`, and `assemble-release` jobs have been merged into a single, more efficient `build-and-test` job.
- This new job now handles building, testing, linting, and assembling all APK variants (debug and release) in one unified process.
- **Gradle Performance Optimizations:**
- **Gradle Build Action:** Replaced `actions/setup-java` with `gradle/actions/setup-gradle@v4` for superior caching. This enables `gradle-home-cache-cleanup` to keep the cache lean.
- **Parallel Execution:** Enabled the `--parallel` flag for all Gradle commands to speed up execution by running tasks concurrently.
- **Build Cache:** Enabled the `--build-cache` flag to reuse outputs from previous builds, significantly reducing build times.
- **Configuration Cache:** Enabled the `--configuration-cache` flag to speed up the configuration phase of Gradle builds.
- **Dependency Pre-downloading:** A new "Pre-download dependencies" step (`./gradlew dependencies`) has been added to both `ci.yml` and `build-release.yml` to warm up the cache and make subsequent build steps faster.
- **Workflow Enhancements:**
- Removed the `--no-daemon` flag from Gradle commands, allowing the Gradle Daemon to be used for better performance.
- The `build-and-test` job now uploads debug and release APKs as artifacts upon successful completion.1 parent f5e7c92 commit e510726
2 files changed
+58
-79
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
41 | 41 | | |
42 | 42 | | |
43 | 43 | | |
44 | | - | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
45 | 50 | | |
46 | 51 | | |
47 | 52 | | |
| |||
50 | 55 | | |
51 | 56 | | |
52 | 57 | | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
53 | 61 | | |
54 | 62 | | |
55 | 63 | | |
56 | 64 | | |
57 | 65 | | |
58 | 66 | | |
59 | 67 | | |
60 | | - | |
| 68 | + | |
61 | 69 | | |
62 | 70 | | |
63 | 71 | | |
| |||
74 | 82 | | |
75 | 83 | | |
76 | 84 | | |
77 | | - | |
| 85 | + | |
78 | 86 | | |
79 | 87 | | |
80 | 88 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
16 | | - | |
17 | | - | |
| 16 | + | |
| 17 | + | |
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
| |||
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
30 | | - | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
31 | 36 | | |
32 | 37 | | |
33 | 38 | | |
| |||
36 | 41 | | |
37 | 42 | | |
38 | 43 | | |
39 | | - | |
40 | | - | |
| 44 | + | |
| 45 | + | |
41 | 46 | | |
42 | | - | |
43 | | - | |
| 47 | + | |
| 48 | + | |
44 | 49 | | |
45 | | - | |
46 | | - | |
| 50 | + | |
| 51 | + | |
47 | 52 | | |
48 | | - | |
49 | | - | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
50 | 58 | | |
51 | 59 | | |
52 | | - | |
53 | | - | |
54 | | - | |
55 | | - | |
| 60 | + | |
| 61 | + | |
56 | 62 | | |
57 | 63 | | |
58 | | - | |
59 | | - | |
60 | | - | |
61 | | - | |
62 | | - | |
63 | | - | |
64 | | - | |
65 | | - | |
66 | | - | |
67 | | - | |
68 | | - | |
69 | | - | |
70 | | - | |
71 | | - | |
72 | | - | |
73 | | - | |
74 | | - | |
75 | | - | |
76 | | - | |
77 | | - | |
78 | | - | |
79 | | - | |
80 | | - | |
81 | | - | |
82 | | - | |
83 | | - | |
84 | | - | |
85 | | - | |
| 64 | + | |
| 65 | + | |
86 | 66 | | |
87 | 67 | | |
88 | | - | |
89 | | - | |
90 | | - | |
91 | | - | |
| 68 | + | |
| 69 | + | |
92 | 70 | | |
93 | 71 | | |
94 | | - | |
95 | | - | |
96 | | - | |
97 | | - | |
98 | | - | |
99 | | - | |
100 | | - | |
101 | | - | |
102 | | - | |
103 | | - | |
104 | | - | |
105 | | - | |
106 | | - | |
107 | | - | |
108 | | - | |
109 | | - | |
110 | | - | |
111 | | - | |
112 | | - | |
113 | | - | |
114 | | - | |
115 | | - | |
116 | | - | |
117 | | - | |
118 | | - | |
119 | | - | |
120 | | - | |
121 | | - | |
122 | | - | |
123 | 72 | | |
| 73 | + | |
124 | 74 | | |
125 | 75 | | |
126 | 76 | | |
127 | 77 | | |
128 | 78 | | |
129 | 79 | | |
130 | 80 | | |
| 81 | + | |
131 | 82 | | |
132 | 83 | | |
133 | 84 | | |
134 | 85 | | |
135 | 86 | | |
136 | 87 | | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
0 commit comments