CI #42
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
name: CI | |
on: | |
push: | |
branches: | |
- "actions/**" | |
- "wip/**" | |
- "main" | |
pull_request: | |
branches: | |
- "**" | |
schedule: | |
- cron: '0 0 * * *' | |
permissions: | |
contents: read | |
jobs: | |
ci: | |
name: CI | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
suite: | |
- { path: bundler, name: bundler1 } | |
- { path: bundler, name: bundler2 } | |
- { path: cargo, name: cargo } | |
- { path: common, name: common } | |
- { path: composer, name: composer } | |
- { path: docker, name: docker } | |
- { path: elm, name: elm } | |
- { path: git_submodules, name: git_submodules } | |
- { path: github_actions, name: github_actions } | |
- { path: go_modules, name: go_modules } | |
- { path: gradle, name: gradle } | |
- { path: hex, name: hex } | |
- { path: maven, name: maven } | |
- { path: lein, name: lein } | |
- { path: npm_and_yarn, name: npm_and_yarn } | |
- { path: nuget, name: nuget } | |
- { path: omnibus, name: omnibus } | |
- { path: python, name: python } | |
- { path: terraform, name: terraform } | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Prepare environment variables | |
run: | | |
echo "BRANCH_REF=$(echo '${{ github.ref }}' | sed -E 's/[^A-Za-z0-9]+/-/g')" >> $GITHUB_ENV | |
echo "BASE_IMAGE=ubuntu:18.04" >> $GITHUB_ENV | |
echo "CORE_IMAGE=dependabot/dependabot-core" >> $GITHUB_ENV | |
echo "CORE_CI_IMAGE=dependabot/dependabot-core-ci" >> $GITHUB_ENV | |
echo "CODE_DIR=/home/dependabot/dependabot-core" >> $GITHUB_ENV | |
- name: Log in to Docker registry | |
run: | | |
if [ -n "${{ secrets.DOCKER_USERNAME }}" ] && [ -n "${{ secrets.DOCKER_PASSWORD }}" ]; then | |
echo ${{ secrets.DOCKER_PASSWORD }} | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin | |
echo "DOCKER_LOGGED_IN=true" >> $GITHUB_ENV | |
else | |
echo "No Docker credentials, skipping login" | |
fi | |
- name: Build dependabot-core image | |
run: | | |
DOCKER_BUILDKIT=1 docker build \ | |
-t "$CORE_IMAGE:latest" \ | |
-t "$CORE_IMAGE:branch--$BRANCH_REF" \ | |
--build-arg BUILDKIT_INLINE_CACHE=1 \ | |
--cache-from "$BASE_IMAGE" \ | |
--cache-from "$CORE_IMAGE:branch--$BRANCH_REF" \ | |
--cache-from "$CORE_IMAGE:latest" \ | |
. | |
- name: Push dependabot-core image to Docker registry | |
if: env.DOCKER_LOGGED_IN == 'true' | |
run: | | |
docker push "$CORE_IMAGE:branch--$BRANCH_REF" | |
- name: Build dependabot-core-ci image | |
run: | | |
DOCKER_BUILDKIT=1 docker build \ | |
-t "$CORE_CI_IMAGE:latest" \ | |
-t "$CORE_CI_IMAGE:branch--$BRANCH_REF" \ | |
-f Dockerfile.ci \ | |
--build-arg BUILDKIT_INLINE_CACHE=1 \ | |
--cache-from "$CORE_CI_IMAGE:latest" \ | |
--cache-from "$CORE_CI_IMAGE:branch--$BRANCH_REF" \ | |
. | |
- name: Push dependabot-core-ci image to Docker registry | |
if: env.DOCKER_LOGGED_IN == 'true' | |
run: | | |
docker push "$CORE_CI_IMAGE:latest" | |
docker push "$CORE_CI_IMAGE:branch--$BRANCH_REF" | |
- name: Run ${{ matrix.suite.name }} tests | |
run: | | |
docker run \ | |
--env "CI=true" \ | |
--env "RAISE_ON_WARNINGS=true" \ | |
--env "DEPENDABOT_TEST_ACCESS_TOKEN=${{ secrets.GITHUB_TOKEN }}" \ | |
--env "SUITE_NAME=${{ matrix.suite.name }}" \ | |
--rm "$CORE_CI_IMAGE" bash -c \ | |
"cd /home/dependabot/dependabot-core/${{ matrix.suite.path }} && ./script/ci-test" | |
lint: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt-get update -y && sudo apt-get install --no-install-recommends shellcheck | |
- run: ./bin/lint |