2023-12-11 16:35:20 -05:00
# Run super-linter outside GitHub Actions
2020-07-21 13:08:05 -04:00
2023-12-11 16:35:20 -05:00
If you want to run super-linter outside GitHub Actions, you need a container
runtime engine to run the super-linter container image.
2020-07-21 13:08:05 -04:00
2023-12-11 16:35:20 -05:00
## Run super-linter Locally
2023-11-30 03:42:05 -05:00
2023-12-11 16:35:20 -05:00
You can run the container locally with the following configuration options to run your code:
2023-11-30 03:42:05 -05:00
```bash
docker run \
2024-02-20 12:27:06 -05:00
-e LOG_LEVEL=DEBUG \
2023-11-30 03:42:05 -05:00
-e RUN_LOCAL=true \
-v /path/to/local/codebase:/tmp/lint \
2023-12-11 16:35:20 -05:00
--rm \
2023-11-30 03:42:05 -05:00
ghcr.io/super-linter/super-linter:latest
```
This example uses the `latest` container image version. If you're trying to reproduce
2023-12-11 16:35:20 -05:00
an issue, or running super-linter as part of your CI pipeline, we recommend that
you **refer to a specific version instead** .
2020-05-14 10:24:23 -04:00
2023-11-30 03:42:05 -05:00
Notes:
2020-07-21 13:08:05 -04:00
2023-11-30 03:42:05 -05:00
- To run against a single file you can use: `docker run -e RUN_LOCAL=true -e USE_FIND_ALGORITHM=true -v /path/to/local/codebase/file:/tmp/lint/file ghcr.io/super-linter/super-linter`
2023-12-11 16:35:20 -05:00
- You need to pass the `RUN_LOCAL` option to bypass some of the GitHub Actions checks, as well as the mapping of your local codebase to `/tmp/lint` .
2023-11-30 03:42:05 -05:00
- If you want to override the `/tmp/lint` folder, you can set the `DEFAULT_WORKSPACE` environment variable to point to the folder you'd prefer to scan.
2023-12-11 16:35:20 -05:00
- You can add as many configuration options as needed. Configuration options are documented in the [README ](../README.md#configure-super-linter ).
2020-01-09 10:48:46 -05:00
2023-12-11 16:35:20 -05:00
### Azure
2022-09-27 13:05:38 -04:00
2023-12-11 16:35:20 -05:00
Check out this [article ](https://blog.tyang.org/2020/06/27/use-github-super-linter-in-azure-pipelines/ )
2022-09-27 13:05:38 -04:00
2023-12-11 16:35:20 -05:00
### GitLab
2022-09-27 13:05:38 -04:00
2023-12-11 16:35:20 -05:00
Check out this [snippet ](https://gitlab.com/snippets/1988376 ) and this Guided Exploration: [GitLab CI CD Extension for Super-Linter ](https://gitlab.com/guided-explorations/ci-cd-plugin-extensions/ci-cd-plugin-extension-github-action-super-linter )
2022-09-27 13:05:38 -04:00
2023-12-11 16:35:20 -05:00
### Run on Codespaces and Visual Studio Code
2022-09-27 13:05:38 -04:00
2023-12-11 16:35:20 -05:00
This repository provides a DevContainer for [remote development ](https://code.visualstudio.com/docs/remote/containers ).
2022-09-27 13:05:38 -04:00
2023-12-11 16:35:20 -05:00
## Share Environment variables between environments
2022-09-27 13:05:38 -04:00
2023-12-11 16:35:20 -05:00
To avoid duplication if you run super-linter both locally and in other
environements, such as CI, you can define configuration options once, and load
them accordingly:
2022-09-27 13:05:38 -04:00
2023-12-11 16:35:20 -05:00
1. Create a configuration file for super-linter `super-linter.env` . For example:
2022-09-27 13:05:38 -04:00
2023-12-11 16:35:20 -05:00
```bash
VALIDATE_ALL_CODEBASE=true
```
2022-09-27 13:05:38 -04:00
2023-12-11 16:35:20 -05:00
1. Load the super-linter configuration file when running outside GitHub Actions:
2022-09-27 13:05:38 -04:00
2023-12-11 16:35:20 -05:00
```bash
docker run --rm \
-e RUN_LOCAL=true \
--env-file ".github/super-linter.env" \
-v "$(pwd)":/tmp/lint \
ghcr.io/super-linter/super-linter:latest
```
2022-09-27 13:05:38 -04:00
2023-12-11 16:35:20 -05:00
1. Load the super-linter configuration file when running in GitHub Actions by
adding the following step to the GitHub Actions workflow that runs
super-linter, after checking out your repository and before running
super-linter:
2022-09-27 13:05:38 -04:00
2023-12-11 16:35:20 -05:00
```yaml
- name: Load super-linter configuration
run: cat .github/super-linter.env >> "$GITHUB_ENV"
```
2022-09-27 13:05:38 -04:00
2023-10-19 17:03:14 -04:00
## Build the container image and run the test suite locally
2023-12-12 13:53:48 -05:00
To run the build and test process locally, do the following:
2023-10-19 17:03:14 -04:00
2023-12-12 13:53:48 -05:00
1. [Create a fine-grained GitHub personal access token ](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens#creating-a-fine-grained-personal-access-token ).
1. Create a file to store the personal access token on your machine:
```bash
touch .github-personal-access-token
```
The file to store the personal access token is ignored by Git.
1. Run the build process:
```bash
make
```
To avoid invalidating the build cache, and reuse it, you can set build metadata
to arbitrary values before running `make` :
```bash
BUILD_DATE=2023-12-12T09:32:05Z \
BUILD_REVISION=83c16f63caa9d432df4519efb4c58a56e2190bd6 \
BUILD_VERSION=83c16f63caa9d432df4519efb4c58a56e2190bd6 \
2023-10-19 17:03:14 -04:00
make
```
### Run the test suite against an arbitrary super-linter container image
You can run the test suite against an arbitrary super-linter container image.
2023-12-07 09:18:47 -05:00
Here is an example that runs the test suite against the `v5.4.3` container
image version.
2023-10-19 17:03:14 -04:00
```shell
CONTAINER_IMAGE_ID="ghcr.io/super-linter/super-linter:v5.4.3" \
2023-12-12 13:53:48 -05:00
BUILD_DATE="2023-10-17T17:00:53Z" \
2023-12-07 09:18:47 -05:00
BUILD_REVISION=b0d1acee1f8050d1684a28ddbf8315f81d084fe9 \
BUILD_VERSION=b0d1acee1f8050d1684a28ddbf8315f81d084fe9 \
2023-10-19 17:03:14 -04:00
make docker-pull test
```
2023-12-07 09:18:47 -05:00
Initialize the `BUILD_DATE` , `BUILD_REVISION` , and `BUILD_VERSION` variables
with the values for that specific container image version. You can get these
values from the build log for that version.
2023-12-11 16:35:20 -05:00
### Get the list of available build targets
2020-01-09 10:48:46 -05:00
2023-12-11 16:35:20 -05:00
To get the list of the available `Make` targets, run the following command:
2020-07-21 13:08:05 -04:00
2023-12-11 16:35:20 -05:00
```shell
make help
```