Compare commits
2 Commits
9b649be8b5
...
678dd3203c
Author | SHA1 | Date | |
---|---|---|---|
678dd3203c | |||
73cad96b6f |
@ -100,6 +100,15 @@ Create jobs based on open Gitea pull requests
|
|||||||
|
|
||||||
- `gitea_authorization.<repo-owner>`
|
- `gitea_authorization.<repo-owner>`
|
||||||
|
|
||||||
|
## Gitea refs
|
||||||
|
|
||||||
|
Hydra plugin for retrieving the list of references (branches or tags) from
|
||||||
|
Gitea following a certain naming scheme.
|
||||||
|
|
||||||
|
### Configuration options
|
||||||
|
|
||||||
|
- `gitea_authorization.<repo-owner>`
|
||||||
|
|
||||||
## GitHub pulls
|
## GitHub pulls
|
||||||
|
|
||||||
Create jobs based on open GitHub pull requests
|
Create jobs based on open GitHub pull requests
|
||||||
|
@ -273,9 +273,19 @@ in
|
|||||||
}
|
}
|
||||||
) prJobNames
|
) prJobNames
|
||||||
);
|
);
|
||||||
|
rels = builtins.fromJSON (builtins.readFile releases);
|
||||||
|
relJobNames = builtins.attrNames rels;
|
||||||
|
relJobset = builtins.listToAttrs (
|
||||||
|
map (
|
||||||
|
name: {
|
||||||
|
inherit name;
|
||||||
|
value = genDrv name;
|
||||||
|
}
|
||||||
|
) relJobNames
|
||||||
|
);
|
||||||
in {
|
in {
|
||||||
trivial = genDrv "trivial";
|
trivial = genDrv "trivial";
|
||||||
} // prJobset
|
} // prJobset // relJobset
|
||||||
'';
|
'';
|
||||||
in
|
in
|
||||||
''
|
''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user