chore: add more third party projects (#190)

This commit is contained in:
William Desportes 2022-12-10 12:26:50 +01:00 committed by GitHub
parent bf0eda2ea3
commit ea008412fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 50 additions and 2 deletions

View File

@ -26,6 +26,10 @@ jobs:
- 'chubbyphp_framework'
- 'silverstripe_framework_core'
- 'silverstripe_framework_cms'
- 'roundcubemail_web'
- 'phpmyadmin_web'
- 'phpbb_web'
- 'drupal_core'
steps:
- name: checkout

View File

@ -168,6 +168,50 @@ fn third_party_12_silverstripe_framework_cms() {
);
}
#[test]
fn third_party_13_roundcubemail_web() {
test_repository(
"roundcubemail",
"https://github.com/roundcube/roundcubemail",
"master",
&["config", "installer", "plugins", "program", "tests"],
&[],
);
}
#[test]
fn third_party_14_phpmyadmin_web() {
test_repository(
"phpmyadmin",
"https://github.com/phpmyadmin/phpmyadmin",
"master",
&["libraries", "test", "examples"],
&[],
);
}
#[test]
fn third_party_15_phpbb_web() {
test_repository(
"phpbb",
"https://github.com/phpbb/phpbb",
"master",
&["phpBB", "tests", "build"],
&[],
);
}
#[test]
fn third_party_16_drupal_core() {
test_repository(
"drupal",
"https://github.com/drupal/core",
"9.4.x",
&["lib", "tests"],
&[],
);
}
fn test_repository(
name: &str,
repository: &str,
@ -232,13 +276,13 @@ fn test_repository(
}
Err(error) => {
results.push(TestResult::Error(format!(
"❌ [{thread_name}][{name}]: {error:?}"
"❌ [{thread_name}][{name}]: {error} ({error:?})"
)));
}
},
Err(error) => {
results.push(TestResult::Error(format!(
"❌ [{thread_name}][{name}]: {error:?}"
"❌ [{thread_name}][{name}]: {error} ({error:?})"
)));
}
}