Skip to content

Commit

Permalink
Merge branch 'AlmaLinux:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
IGSteven authored Nov 25, 2023
2 parents cd53984 + 76c40f8 commit e197d05
Show file tree
Hide file tree
Showing 466 changed files with 6,453 additions and 639 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/ci.yml
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
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
!mirrors.d
!.github
!gh_ci
!.gitmodules
!LICENSE
!config.yml
.idea
4 changes: 4 additions & 0 deletions .gitmodules
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
5 changes: 5 additions & 0 deletions README.md
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/)

Loading

0 comments on commit e197d05

Please sign in to comment.