I tryed setting gitlab ci for my android project. I want used sdk from local folder without loading from official server. I created runner my work station. Tell me please how write .gitlab-ci.yml for this?
Asked
Active
Viewed 183 times
1 Answers
0
In GitLab CI/CD, you gitlab-ci.yml should contain stages. Each stage should include one or more jobs, notice that these jobs in the same stage running in parallel.
For example, you may have 3 stages:
- Build
- Run unit tests
- Deploy
In your gitlab-ci.yml includes some commands to run this job within these stages.
I wrote an article for applying GitLab CI/CD in android project, I hope it could help you.
check part 1
check part 2

MustafaKhaled
- 1,343
- 9
- 25