-
Notifications
You must be signed in to change notification settings - Fork 427
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'AlmaLinux:master' into master
- Loading branch information
Showing
466 changed files
with
6,453 additions
and
639 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: CI | ||
|
||
# Controls when the workflow will run | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the master branch | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
# This workflow contains a single job called "build" | ||
config_checker: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
|
||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.9 | ||
|
||
- name: Install Python packages into venv | ||
run: python3.9 -m pip install -r gh_ci/req.txt | ||
|
||
- id: files | ||
uses: jitterbit/get-changed-files@v1 | ||
|
||
- name: Check YAML configs | ||
run: | | ||
mirror_regexp="mirrors.d/.*.(yml)$" | ||
modified_files="${{ steps.files.outputs.added_modified }} ${{steps.files.outputs.renamed}}" | ||
if ! echo "${modified_files}" | grep -E "${mirror_regexp}" &> /dev/null; then | ||
# we check only the main config if PR doesn't contain any new or modified mirror config | ||
python3.9 gh_ci/config_checker.py -sc config.yml | ||
else | ||
changed_files="" | ||
for changed_file in ${modified_files}; do | ||
if echo "${changed_file}" | grep -E "${mirror_regexp}" &> /dev/null; then | ||
changed_files="${changed_file} ${changed_files}" | ||
elif echo "${changed_file}" | grep "mirrors.d" &> /dev/null; then | ||
echo "You add a config with wrong extension. Should be *.yml" | ||
exit 1 | ||
fi | ||
done | ||
python3.9 gh_ci/config_checker.py -sc config.yml -mc ${changed_files} | ||
fi |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
!mirrors.d | ||
!.github | ||
!gh_ci | ||
!.gitmodules | ||
!LICENSE | ||
!config.yml | ||
.idea |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[submodule "gh_ci/yaml_snippets"] | ||
path = gh_ci/yaml_snippets | ||
url = https://github.com/AlmaLinux/mirrors.git | ||
branch = yaml_snippets |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# AlmaLinux mirrors repository | ||
|
||
* [How to create a public mirror for AlmaLinux](https://wiki.almalinux.org/Mirrors.html) | ||
* [The List of AlmaLinux mirrors](https://mirrors.almalinux.org/) | ||
|
Oops, something went wrong.