Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

ci: initial cicd workflows #1

Merged
merged 27 commits into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
15dd03d
ci: initiate cicd workflows
jszutenb Oct 15, 2024
6cef4bc
ci: add config files for linter
jszutenb Oct 24, 2024
189dcde
ci: restrict github token scope
jszutenb Oct 24, 2024
d87fb34
ci: restrict token scope for linter
jszutenb Oct 24, 2024
b34e918
ci: add run condition to workflows
jszutenb Oct 30, 2024
94d22f4
ci: add unit tests names
jszutenb Oct 30, 2024
16b2248
ci: add license template
jszutenb Oct 31, 2024
bd988f0
ci: add CODEOWNERS file
jszutenb Nov 12, 2024
44ef2bd
ci: add PR template
jszutenb Nov 14, 2024
8ada917
ci: move PR template to .github/
jszutenb Nov 14, 2024
c1d0a16
ci: add issue_template
jszutenb Nov 15, 2024
d612f6d
Merge branch 'main' into cicd_initial
jszutenb Nov 18, 2024
1a0779f
ci: add clean up disk space
jszutenb Nov 18, 2024
a282502
ci: clean up disk space v2
jszutenb Nov 18, 2024
24220f8
ci: add clean up disk space v3
jszutenb Nov 18, 2024
9e91710
ci: run unit-tests with composite action
jszutenb Nov 18, 2024
5763ff3
ci: add checkout
jszutenb Nov 18, 2024
9a2e412
ci: install tox
jszutenb Nov 18, 2024
04886da
ci: fix input reference
jszutenb Nov 18, 2024
c486164
ci: configure dependabot
jszutenb Nov 18, 2024
4c55e7e
ci: add always() condition to steps
jszutenb Nov 18, 2024
a383ec9
ci: change directory for clean up step
jszutenb Nov 18, 2024
47ea3b3
ci: specify clean up path precisely
jszutenb Nov 18, 2024
a9d48a8
ci: add suffix to validate steps flow on failure
jszutenb Nov 19, 2024
eed8dd7
ci: remove suffix for validation
jszutenb Nov 19, 2024
9ed1090
ci: narrow down clean up
jszutenb Nov 19, 2024
a484144
ci: remove dependabot config due to disabled dependabot updates in se…
jszutenb Nov 19, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @intel/Enterprise-RAG-maintain
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: true
24 changes: 24 additions & 0 deletions .github/actions/unit-tests/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: "Unit tests"

inputs:
test-name:
description: 'Unit test name'
required: true

runs:
using: 'composite'
steps:
- name: Trigger unit tests
run: |
echo "Attempting to run unit tests"
cd repo/src
sudo tox -e ${{ inputs.test-name }}
exit_code=$?
echo "Unit tests finished"
exit $exit_code
shell: bash
- name: Clean up virtualenv
run: |
cd repo/src
sudo rm -rf .tox/${{ inputs.test-name }}
shell: bash
19 changes: 19 additions & 0 deletions .github/issue_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Summary
<!--- Provide a short summary of the issue. Sections below provide guidance on what
factors are considered important to reproduce an issue. -->

## Version
<!--- Report version and githash -->

# Environment
<!--- Provide details on CPU and Gaudi you are using. Include versions of OS, Habana SW and K8s. -->

## Steps to reproduce
<!--- Please check that the issue is reproducible with the latest revision on
main. Include all the steps to reproduce the issue. -->

## Expected Behavior
<!--- Tell us what should happen -->

## Current Behavior
<!--- Tell us what happens instead of the expected behavior -->
2 changes: 2 additions & 0 deletions .github/license_template.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Copyright (C) 2024 Intel Corporation
SPDX-License-Identifier: Apache-2.0
7 changes: 7 additions & 0 deletions .github/linters/.hadolint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
failure-threshold: error
ignored:
- DL3006
- DL3007
- DL3008
- DL3042
- DL3013
6 changes: 6 additions & 0 deletions .github/linters/.ruff.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[lint]
# Skip unused variable rules (`F841`).
ignore = ["E402"]

[lint.per-file-ignores]
"__init__.py" = ["F401"]
2 changes: 2 additions & 0 deletions .github/linters/.shellcheckrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
disable=SC2116
disable=SC2148
34 changes: 34 additions & 0 deletions .github/linters/.yaml-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---

extends: default

ignore: |
deployment/microservices-connector/helm/templates/*.yaml
telemetry/helm/charts/logs/templates/*.yaml
/workspace/telemetry/helm/charts/logs/templates/*.yaml

rules:
braces:
level: warning
max-spaces-inside: 1
brackets:
level: warning
max-spaces-inside: 1
colons:
level: warning
commas:
level: warning
comments: disable
comments-indentation: disable
document-start: disable
empty-lines:
level: warning
hyphens:
level: warning
indentation:
level: warning
indent-sequences: consistent
line-length:
level: warning
allow-non-breakable-inline-mappings: true
truthy: disable
20 changes: 20 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
## Description

The summary of the proposed changes as long as the relevant motivation and context.

## Issues

Fixes #(github issue). If there is no such issue, please mark it as `n/a`.

## Type of change

List the type of change like below. Please delete options that are not relevant.

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds new functionality)
- [ ] Breaking change (fix or feature that would break existing design and interface)
- [ ] Others (enhancement, documentation, validation, etc.)

## Tests

Describe the tests that you ran to verify your changes.
36 changes: 36 additions & 0 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Linter

on:
pull_request:
branches: [ main ]

push:
branches: [ main ]

jobs:
lint:
if: ${{ (github.event.repository.visibility == 'public') && (github.repository_owner == 'intel') }}
name: Run linter
runs-on: ubuntu-latest
permissions:
contents: read
statuses: write
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Print YAML Lint Config
run: cat .github/linters/.yaml-lint.yml
- name: Super-Linter
uses: super-linter/super-linter/[email protected]
env:
VALIDATE_ALL_CODEBASE: false
VALIDATE_BASH: true
BASH_SEVERITY: error
FILTER_REGEX_EXCLUDE: ".*/templates/.*.yaml"
VALIDATE_YAML: true
VALIDATE_PYTHON_RUFF: true
VALIDATE_DOCKERFILE_HADOLINT: true
GITHUB_TOKEN: ${{ github.token }}
DEFAULT_BRANCH: main
86 changes: 86 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
name: Unit tests

on:
pull_request:
branches: [ main ]

jobs:
unit-tests:
if: ${{ (github.event.repository.visibility == 'public') && (github.repository_owner == 'intel') }}
name: Unit tests
runs-on: ubuntu-latest
defaults:
run:
shell: bash
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Clean up disk space
run: |
sudo rm -rf \
/usr/local/lib/android \
/usr/share/dotnet \
"$AGENT_TOOLSDIRECTORY"
df -h /
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install test prerequisites
run: sudo apt-get update && sudo apt-get -y install libgl1-mesa-glx tox
- name: Checkout code to folder
uses: actions/checkout@v4
with:
path: repo
- name: Ingestion unit tests
if: success() || failure()
uses: ./.github/actions/unit-tests
with:
test-name: ingestion_unit_tests
- name: Prompt registry unit tests
if: success() || failure()
uses: ./.github/actions/unit-tests
with:
test-name: prompt_registry_unit_tests
- name: Retrievers unit tests
if: success() || failure()
uses: ./.github/actions/unit-tests
with:
test-name: retrievers_unit_tests
- name: Vectorstores unit tests
if: success() || failure()
uses: ./.github/actions/unit-tests
with:
test-name: vectorstores_unit_tests
- name: Reranks unit tests
if: success() || failure()
uses: ./.github/actions/unit-tests
with:
test-name: reranks_unit_tests
- name: Embeddings unit tests
if: success() || failure()
uses: ./.github/actions/unit-tests
with:
test-name: embeddings_unit_tests
- name: Dataprep unit tests
if: success() || failure()
uses: ./.github/actions/unit-tests
with:
test-name: dataprep_unit_tests
- name: LLMs unit tests
if: success() || failure()
uses: ./.github/actions/unit-tests
with:
test-name: llms_unit_tests
- name: Guardrails input unit tests
if: success() || failure()
uses: ./.github/actions/unit-tests
with:
test-name: llm_guard_input_guardrail_unit_tests
- name: Guardrails output unit tests
if: success() || failure()
uses: ./.github/actions/unit-tests
with:
test-name: llm_guard_output_guardrail_unit_tests