-
Notifications
You must be signed in to change notification settings - Fork 0
105 lines (97 loc) · 2.93 KB
/
mirror.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: 'mirror'
on:
push:
branches:
- __mirror
schedule:
# Run everyday at 3 AM UTC
- cron: '0 3 * * *'
workflow_dispatch:
jobs:
mirror-and-check:
runs-on: ubuntu-latest
name: mirror-and-check
outputs:
matrix: ${{ steps.check.outputs.matrix }}
steps:
- name: mirror
id: mirror
uses: bridgelightcloud/github-mirror-action@v3
with:
origin: 'https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git'
GITHUB_TOKEN: ${{ secrets.PAT }}
- name: check
id: check
run: |
REPO=$( basename $PWD )
cd ..
mv $REPO ${REPO}.git
git clone --shared ${REPO}.git $REPO
JSON_DATA_FILE="workflows.json"
cd $REPO
for branch in $( cat rc-branches ); do
git worktree add ../${branch} ${branch}
pushd ../${branch}
if git log --oneline HEAD~1 | head -n1 | grep "Linux\ .*\-rc.*" >/dev/null; then
KERNEL_VERSION=$( git log --oneline HEAD~1 | head -n1 | grep -o "Linux\ .*\-rc.*" )
echo "build ${KERNEL_VERSION}"
if [[ -e ${JSON_DATA_FILE} ]]; then
echo -n ",{\"workflow\":\"build_${branch}.yml\"}" >> ../${JSON_DATA_FILE}
else
echo -n "{\"workflow\":\"build_${branch}.yml\"}" >> ../${JSON_DATA_FILE}
fi
fi
popd
done
# cat ../${JSON_DATA_FILE}
echo "::set-output name=matrix::{\"include\":[$( cat ../${JSON_DATA_FILE} )]}"
signal_build:
needs: mirror-and-check
runs-on: ubuntu-latest
strategy:
matrix: ${{fromJson(needs.mirror-and-check.outputs.matrix)}}
steps:
# uses: ./.github/workflows/${{ matrix.workflow }}
- name: test
run: |
echo ${{ matrix.workflow }}
# - name: check_env
# run: |
# pwd
# ls -l
# git status || true
# git checkout linux-6.6.y || true
# if git log --oneline HEAD~1 | grep "Linux\ .*\-rc.*"; then
# echo "build"
# echo "call linux-6.6.y test-build workflow"
# else
# echo "nobuild"
# fi
# cd ..
# ls -l
# check_matrix:
# needs: mirror
# strategy:
# # Don't cancel the remaining running jobs if some job(s) fail(s)
# fail-fast: false
# matrix:
# branch: ['linux-6.6.y', 'linux-6.1.y' ]
# max-parallel: 1
# steps:
# - name: check
# run: |
# pwd
# ls -l
# if [[ -e Makefile ]]; then
# make mrproper || true
# fi
# git checkout ${{ matrix.branch }}
# if git log --oneline | grep "Linux\ .*\-rc.*"; then
# echo "build for ${{ matrix.branch }}"
# else
# echo "nobuild for ${{ matrix.branch }}"
# fi
# ls -l
# cd ..
# ls -l
# exit 0