-
Notifications
You must be signed in to change notification settings - Fork 0
feat: Initial commit #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,205 @@ | ||
name: CI Build Reusable Workflow | ||
on: | ||
workflow_call: | ||
secrets: | ||
GH_TOKEN: | ||
description: 'GitHub token for authentication' | ||
required: true | ||
PYPI_TOKEN: | ||
description: 'PyPI API token to publish package' | ||
required: false | ||
inputs: | ||
UPLOAD_PACKAGE: | ||
description: 'Should the package be uploaded to PyPI?' | ||
required: false | ||
default: false | ||
type: boolean | ||
REPOSITORY_NAME: | ||
description: 'Repository name' | ||
required: false | ||
type: string | ||
BRANCH_NAME: | ||
description: 'Branch name to checkout' | ||
required: true | ||
type: string | ||
PYTHON_VERSION: | ||
description: 'Python version to use' | ||
required: false | ||
default: '3.10.11' | ||
type: string | ||
PUSH_TAG: | ||
description: 'Push tag after version bump' | ||
required: false | ||
default: false | ||
type: boolean | ||
RELEASE_BUILD: | ||
description: 'Is release build?' | ||
required: false | ||
default: false | ||
type: boolean | ||
GIT_USER: | ||
description: 'Git user name for commit and tag' | ||
required: true | ||
type: string | ||
GIT_EMAIL: | ||
description: 'Git user email for commit and tag' | ||
required: true | ||
type: string | ||
PROJECT_NAME: | ||
description: 'Project name for tests' | ||
required: true | ||
type: string | ||
SOURCE_PATH: | ||
description: 'Path to the source code directory' | ||
required: false | ||
default: 'src' | ||
type: string | ||
RUNS_ON: | ||
description: 'Runner type for the job' | ||
required: false | ||
default: 'ubuntu-latest' | ||
type: string | ||
|
||
jobs: | ||
build_whl: | ||
permissions: | ||
contents: write | ||
id-token: write | ||
environment: | ||
name: "pypi" | ||
url: https://pypi.org/p/${{ inputs.PROJECT_NAME }} | ||
runs-on: ${{ inputs.RUNS_ON }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-tags: true | ||
fetch-depth: 0 | ||
path: ${{ inputs.SOURCE_PATH }} | ||
ref: ${{ inputs.BRANCH_NAME }} | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ inputs.PYTHON_VERSION }} | ||
cache: 'pip' | ||
|
||
- name: Version bumping | ||
id: VERSION_BUMP | ||
if: inputs.RELEASE_BUILD == true | ||
env: | ||
GIT_AUTHOR_NAME: ${{ inputs.GIT_USER }} | ||
GIT_AUTHOR_EMAIL: ${{ inputs.GIT_EMAIL }} | ||
GIT_COMMITTER_NAME: ${{ inputs.GIT_USER }} | ||
GIT_COMMITTER_EMAIL: ${{ inputs.GIT_EMAIL }} | ||
shell: bash | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m venv bump_version | ||
source bump_version/bin/activate | ||
pip install python-semantic-release~=10.2 | ||
pip install -r ${{ inputs.SOURCE_PATH }}/requirements-dev.txt | ||
mfd-create-config-files --project-dir ./${{ inputs.SOURCE_PATH }} | ||
cd ${{ inputs.SOURCE_PATH }} | ||
version_after_bump=$(semantic-release version --print | tail -n 1 | tr -d '\n') | ||
version_from_tag=$(git describe --tags --abbrev=0 | tr -d '\n' | sed 's/^v//') | ||
echo "Version after semantic-release bump is: ${version_after_bump}" | ||
echo "Version from tag: ${version_from_tag}" | ||
# Only check version equality if RELEASE_BUILD is true | ||
if [ "${{ inputs.RELEASE_BUILD }}" == "true" ]; then | ||
if [ "$version_after_bump" == "$version_from_tag" ]; then | ||
echo "Version would not change: version_after_bump=${version_after_bump}, version_from_tag=${version_from_tag}" | ||
exit 1 | ||
fi | ||
fi | ||
semantic-release version --no-push --no-vcs-release | ||
cat pyproject.toml | ||
echo "version_after_bump=v${version_after_bump}" >> $GITHUB_OUTPUT | ||
- name: Create virtual environment for whl creation | ||
shell: bash | ||
run: | | ||
python -m venv whl_creation | ||
source whl_creation/bin/activate | ||
pip install build==1.2.2.post1 | ||
cd ${{ inputs.SOURCE_PATH }} | ||
../whl_creation/bin/python -m build --wheel --outdir ../whl_creation/dist | ||
ls -l ../whl_creation/dist | ||
|
||
- name: Determine if unit and functional tests should run | ||
id: test_check | ||
shell: bash | ||
run: | | ||
REPO_NAME=$(echo "${{ inputs.PROJECT_NAME }}") | ||
echo "Repository name extracted: $REPO_NAME" | ||
|
||
UNIT_TEST_DIR="${{ inputs.SOURCE_PATH }}/tests/unit/test_$(echo "${REPO_NAME}" | tr '-' '_')" | ||
FUNC_TEST_DIR="${{ inputs.SOURCE_PATH }}/tests/system/test_$(echo "${REPO_NAME}" | tr '-' '_')" | ||
if [ -d "$UNIT_TEST_DIR" ]; then | ||
echo "Unit tests directory exists: $UNIT_TEST_DIR" | ||
echo "run_unit_tests=true" >> $GITHUB_OUTPUT | ||
else | ||
echo "Unit tests directory does not exist: $UNIT_TEST_DIR" | ||
echo "run_unit_tests=false" >> $GITHUB_OUTPUT | ||
fi | ||
if [ -d "$FUNC_TEST_DIR" ]; then | ||
echo "Functional tests directory exists: $FUNC_TEST_DIR" | ||
echo "run_functional_tests=true" >> $GITHUB_OUTPUT | ||
else | ||
echo "Functional tests directory does not exist: $FUNC_TEST_DIR" | ||
echo "run_functional_tests=false" >> $GITHUB_OUTPUT | ||
fi | ||
|
||
- name: Install dependencies for tests | ||
if: steps.test_check.outputs.run_unit_tests == 'true' || steps.test_check.outputs.run_functional_tests == 'true' | ||
shell: bash | ||
run: | | ||
python -m venv test_env | ||
source test_env/bin/activate | ||
python -m pip install -r "${{ inputs.SOURCE_PATH }}/requirements.txt" -r "${{ inputs.SOURCE_PATH }}/requirements-test.txt" -r "${{ inputs.SOURCE_PATH }}/requirements-dev.txt" | ||
|
||
- name: Run unit tests if test directory exists | ||
if: steps.test_check.outputs.run_unit_tests == 'true' | ||
shell: bash | ||
run: | | ||
source test_env/bin/activate | ||
mfd-unit-tests --project-dir ${{ github.workspace }}/${{ inputs.SOURCE_PATH }} | ||
|
||
- name: Run functional tests if test directory exists | ||
if: steps.test_check.outputs.run_functional_tests == 'true' | ||
shell: bash | ||
run: | | ||
source test_env/bin/activate | ||
mfd-system-tests --project-dir ${{ github.workspace }}/${{ inputs.SOURCE_PATH }} | ||
- name: Publish package distributions to PyPI | ||
if: ${{ inputs.RELEASE_BUILD == true && inputs.UPLOAD_PACKAGE == true }} | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
packages-dir: 'whl_creation/dist' | ||
password: ${{ secrets.PYPI_TOKEN }} | ||
|
||
- name: Publish comment how to build .whl | ||
if: inputs.RELEASE_BUILD == false | ||
uses: actions/github-script@v7 | ||
with: | ||
github-token: ${{ secrets.GH_TOKEN }} | ||
script: | | ||
const prNumber = context.payload.pull_request.number; | ||
const commentBody = "We don't publish DEVs .whl.\n To build .whl, run 'pip install git+https://github.com/${{ inputs.REPOSITORY_NAME }}@${{ inputs.BRANCH_NAME }}'"; | ||
await github.rest.issues.createComment({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: prNumber, | ||
body: commentBody | ||
}); | ||
|
||
- name: Push git tag after version bump | ||
if: ${{ inputs.RELEASE_BUILD == true && inputs.PUSH_TAG == true }} | ||
shell: bash | ||
env: | ||
GIT_AUTHOR_NAME: ${{ inputs.GIT_USER }} | ||
GIT_AUTHOR_EMAIL: ${{ inputs.GIT_EMAIL }} | ||
GIT_COMMITTER_NAME: ${{ inputs.GIT_USER }} | ||
GIT_COMMITTER_EMAIL: ${{ inputs.GIT_EMAIL }} | ||
version_after_bump: ${{ steps.VERSION_BUMP.outputs.version_after_bump }} | ||
run: | | ||
cd ${{ inputs.SOURCE_PATH }} | ||
git push origin "${version_after_bump}" |
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
# For most projects, this workflow file will not need changing; you simply need | ||
# to commit it to your repository. | ||
# | ||
# You may wish to alter this file to override the set of languages analyzed, | ||
# or to provide custom queries or build logic. | ||
# | ||
# ******** NOTE ******** | ||
# We have attempted to detect the languages in your repository. Please check | ||
# the `language` matrix defined below to confirm you have the correct set of | ||
# supported CodeQL languages. | ||
# | ||
name: "CodeQL Advanced" | ||
|
||
on: | ||
pull_request: | ||
branches: [ "main" ] | ||
push: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze (${{ matrix.language }}) | ||
# Runner size impacts CodeQL analysis time. To learn more, please see: | ||
# - https://gh.io/recommended-hardware-resources-for-running-codeql | ||
# - https://gh.io/supported-runners-and-hardware-resources | ||
# - https://gh.io/using-larger-runners (github.com only) | ||
# Consider using larger runners or machines with greater resources for possible analysis time improvements. | ||
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} | ||
permissions: | ||
# required for all workflows | ||
security-events: write | ||
|
||
# required to fetch internal or private CodeQL packs | ||
packages: read | ||
|
||
# only required for workflows in private repositories | ||
actions: read | ||
contents: read | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- language: actions | ||
build-mode: none | ||
- language: python | ||
build-mode: none | ||
# CodeQL supports the following values keywords for 'language': 'actions', 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'rust', 'swift' | ||
# Use `c-cpp` to analyze code written in C, C++ or both | ||
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both | ||
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both | ||
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis, | ||
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning. | ||
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how | ||
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
# Add any setup steps before running the `github/codeql-action/init` action. | ||
# This includes steps like installing compilers or runtimes (`actions/setup-node` | ||
# or others). This is typically only required for manual builds. | ||
# - name: Setup runtime (example) | ||
# uses: actions/setup-example@v1 | ||
|
||
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v3 | ||
with: | ||
languages: ${{ matrix.language }} | ||
build-mode: ${{ matrix.build-mode }} | ||
# If you wish to specify custom queries, you can do so here or in a config file. | ||
# By default, queries listed here will override any specified in a config file. | ||
# Prefix the list here with "+" to use these queries and those in the config file. | ||
|
||
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs | ||
# queries: security-extended,security-and-quality | ||
|
||
# If the analyze step fails for one of the languages you are analyzing with | ||
# "We were unable to automatically build your code", modify the matrix above | ||
# to set the build mode to "manual" for that language. Then modify this step | ||
# to build your code. | ||
# ℹ️ Command-line programs to run using the OS shell. | ||
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun | ||
- if: matrix.build-mode == 'manual' | ||
shell: bash | ||
run: | | ||
echo 'If you are using a "manual" build mode for one or more of the' \ | ||
'languages you are analyzing, replace this with the commands to build' \ | ||
'your code, for example:' | ||
echo ' make bootstrap' | ||
echo ' make release' | ||
exit 1 | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v3 | ||
with: | ||
category: "/language:${{matrix.language}}" |
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: CI BUILD - RELEASE MODE | ||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build_upload_whl: | ||
strategy: | ||
matrix: | ||
include: | ||
- name: python-version-3-10 | ||
python_version: '3.10' | ||
push_tag: false | ||
upload_package: false | ||
continue-on-error: true | ||
- name: python-version-3-13 | ||
python_version: '3.13' | ||
push_tag: true | ||
upload_package: true | ||
continue-on-error: true | ||
uses: ./.github/workflows/build_upload_whl.yml | ||
secrets: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} | ||
with: | ||
REPOSITORY_NAME: ${{ github.repository }} | ||
BRANCH_NAME: ${{ github.ref_name }} | ||
PYTHON_VERSION: ${{ matrix.python_version }} | ||
PUSH_TAG: ${{ matrix.push_tag }} | ||
RELEASE_BUILD: true | ||
UPLOAD_PACKAGE: ${{ matrix.upload_package }} | ||
GIT_USER: 'mfd-intel-bot' | ||
GIT_EMAIL: '[email protected]' | ||
PROJECT_NAME: 'mfd-kernel-namespace' | ||
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: DEV BUILD | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize] | ||
|
||
jobs: | ||
build_upload_whl: | ||
strategy: | ||
matrix: | ||
include: | ||
- name: python-version-3-10 | ||
python_version: '3.10' | ||
push_tag: false | ||
- name: python-version-3-13 | ||
python_version: '3.13' | ||
push_tag: false | ||
uses: ./.github/workflows/build_upload_whl.yml | ||
secrets: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
with: | ||
REPOSITORY_NAME: ${{ github.repository }} | ||
BRANCH_NAME: ${{ github.head_ref }} | ||
PYTHON_VERSION: ${{ matrix.python_version }} | ||
PUSH_TAG: ${{ matrix.push_tag }} | ||
RELEASE_BUILD: false | ||
GIT_USER: 'mfd-intel-bot' | ||
GIT_EMAIL: '[email protected]' | ||
PROJECT_NAME: 'mfd-kernel-namespace' | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.