-
Notifications
You must be signed in to change notification settings - Fork 100
Running Bitrise locally
Jaime Toca edited this page Dec 10, 2021
·
2 revisions
You can execute builds locally using Bitrise CLI. The steps are:
1.Download Bitrise CLI and give execution permissions.
curl -fL https://github.com/bitrise-io/bitrise/releases/download/1.38.0/bitrise-$(uname -s)-$(uname -m) > /usr/local/bin/bitrise
chmod +x /usr/local/bin/bitrise
2.Make sure you have both Go and Ruby installed. $HOME/go/bin should be added in your machine.
3.Ask the team for the file .bitrise.secrets.yml and move it to the app root directory. Remember to add a .gitignore
4.Go to the root of the capture-android-app and run
bitrise init
5.After the init is finished. You should be able to run the workflow editor
bitrise :workflow-editor
To run any workflow just type
sudo bitrise run <workflowNameHere>