-
Notifications
You must be signed in to change notification settings - Fork 664
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
/tmp/ | ||
**.idea/ | ||
*.DS_Store | ||
**/process.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Development Guide | ||
|
||
## Running CircleCI locally | ||
|
||
### Step 1: Install CircleCI | ||
|
||
If you wish to run CircleCI locally, start by installing it: | ||
|
||
- macOS | ||
``` | ||
brew install circleci | ||
``` | ||
|
||
- Linux (via Snap) | ||
``` | ||
sudo snap install docker circleci | ||
sudo snap connect circleci:docker docker | ||
``` | ||
|
||
- Windows (via Chocolatey) | ||
``` | ||
choco install circleci-cli -y | ||
``` | ||
|
||
### Step 2: Run CircleCI | ||
|
||
To run a job, export the config to `process.yml`, and specify it when executing: | ||
```shell | ||
circleci config process .circleci/config.yml > process.yml | ||
circleci local execute -c process.yml --job JOB_NAME | ||
``` |