25 lines
667 B
YAML
25 lines
667 B
YAML
pipeline:
|
|
lint:
|
|
image: alpine:3.21
|
|
commands:
|
|
- apk add --no-cache shellcheck git
|
|
- git clone ${CI_REPO_REMOTE} .
|
|
- shellcheck $(find . -type f -name "*.sh")
|
|
|
|
build:
|
|
image: ubuntu:24.04
|
|
depends_on:
|
|
- lint
|
|
environment:
|
|
DOCKER_API_VERSION: "1.45"
|
|
commands:
|
|
- apt-get update -y
|
|
- apt-get install -y --no-install-recommends curl sudo gnupg2 libx11-dev nscd
|
|
- curl https://mise.run | sh
|
|
- export PATH="$HOME/.local/share/mise/bin:$HOME/.local/share/mise/shims:$PATH"
|
|
- mise install
|
|
- git clone ${CI_REPO_REMOTE} .
|
|
- mise run check_gomod
|
|
- mise run test_ci
|
|
- mise run test_integration_ci
|