chore: debug CI #131
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: pre-commit | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
install-client-dev-tools: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: dev env setup | |
uses: ./.github/actions/dev-env-setup | |
- run: yarn install --frozen-lockfile | |
working-directory: ./client | |
install-server-dev-tools: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: dev env setup | |
uses: ./.github/actions/dev-env-setup | |
- name: Set up python | |
id: setup-python | |
uses: actions/setup-python@v4 | |
with: | |
# do this dynamically with tool-versions version | |
python-version: "3.9.16" | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
- name: Load cached venv | |
id: cached-poetry-dependencies | |
uses: actions/cache@v3 | |
with: | |
path: .venv | |
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} | |
#---------------------------------------------- | |
# install dependencies if cache does not exist | |
#---------------------------------------------- | |
- name: Install dependencies | |
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' | |
run: poetry install --no-interaction --no-root | |
working-directory: ./bc_obps | |
- name: is pylint installed? | |
run: | | |
poetry run pylint --version | |
echo $PATH | |
working-directory: ./bc_obps | |
# - name: Setup tmate session | |
# uses: mxschmitt/action-tmate@v3 | |
# yarn-test: | |
# needs: install-client-dev-tools | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: dev env setup | |
# uses: ./.github/actions/dev-env-setup | |
# - run: yarn test | |
# working-directory: ./client | |
# pre-commit: | |
# needs: ["install-client-dev-tools", "install-server-dev-tools"] | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - name: dev env setup | |
# uses: ./.github/actions/dev-env-setup | |
# - run: pip install -r requirements.txt | |
# - name: Set up python | |
# id: setup-python | |
# uses: actions/setup-python@v4 | |
# with: | |
# # do this dynamically with tool-versions version | |
# python-version: "3.9.16" | |
# - name: Install Poetry | |
# uses: snok/install-poetry@v1 | |
# - name: Load cached venv | |
# id: cached-poetry-dependencies | |
# uses: actions/cache@v3 | |
# with: | |
# path: .venv | |
# key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} | |
# #---------------------------------------------- | |
# # install dependencies if cache does not exist | |
# #---------------------------------------------- | |
# - name: Install dependencies | |
# if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' | |
# run: poetry install --no-interaction --no-root | |
# working-directory: ./bc_obps | |
# - name: is pylint installed? | |
# run: | | |
# poetry run pylint --version | |
# echo $PATH | |
# working-directory: ./bc_obps | |
# - uses: pre-commit/action@v3.0.0 | |
# # - uses: actions/setup-python@v2 | |
# - uses: terraform-linters/setup-tflint@v1 | |
# with: | |
# tflint_version: latest | |
# # - name: Analyze Kustomize Manifests | |
# # run: | | |
# # pwd | |
# # ls -al | |
# # curl https://get.datree.io | /bin/bash | |
# # datree test tekton/base/pipelines/* --ignore-missing-schemas --no-record | |
# # echo "scanning tasks..." | |
# # datree test tekton/base/tasks/* --ignore-missing-schemas --no-record | |
# # echo "scan triggers..." | |
# # datree test tekton/base/triggers/* --ignore-missing-schemas --no-record | |
docker-build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- image: ghcr.io/bcgov/cas-reg-backend | |
context: bc_obps | |
dockerfile: bc_obps/Dockerfile | |
name: bc_obps | |
- image: ghcr.io/bcgov/cas-reg-frontend | |
context: client | |
dockerfile: client/Dockerfile | |
name: client | |
name: Build ${{ matrix.name }} docker image | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v2 | |
with: | |
install: true | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v3 | |
with: | |
images: ${{ matrix.image }} | |
tags: | | |
type=sha,format=long,prefix= | |
latest | |
type=ref,event=pr | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Cache Docker layers | |
uses: actions/cache@v3 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-buildx-${{ matrix.name }}-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx-${{ matrix.name }} | |
- name: Build image | |
uses: docker/build-push-action@v3 | |
with: | |
context: ${{ matrix.context }} | |
builder: ${{ steps.buildx.outputs.name }} | |
push: true | |
file: ${{ matrix.dockerfile }} | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache-new | |
# Temp fix | |
# https://github.com/docker/build-push-action/issues/252 | |
# https://github.com/moby/buildkit/issues/1896 | |
- name: Move cache | |
run: | | |
rm -rf /tmp/.buildx-cache | |
mv /tmp/.buildx-cache-new /tmp/.buildx-cache | |
- name: Setup tmate session | |
uses: mxschmitt/action-tmate@v3 | |
e2e: | |
needs: | |
["docker-build", "install-client-dev-tools", "install-server-dev-tools"] | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: dev env setup | |
uses: ./.github/actions/dev-env-setup | |
- name: run app locally | |
uses: ./.github/actions/local-app-run | |
- name: Install Playwright Browsers | |
run: yarn playwright install --with-deps | |
working-directory: ./client | |
- name: Run Playwright tests | |
run: yarn playwright test | |
working-directory: ./client | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 |