mirror of
https://github.com/danog/parser.git
synced 2024-11-26 20:04:57 +01:00
chore: add more third party projects (#190)
This commit is contained in:
parent
bf0eda2ea3
commit
ea008412fc
4
.github/workflows/third-party-tests.yml
vendored
4
.github/workflows/third-party-tests.yml
vendored
@ -26,6 +26,10 @@ jobs:
|
|||||||
- 'chubbyphp_framework'
|
- 'chubbyphp_framework'
|
||||||
- 'silverstripe_framework_core'
|
- 'silverstripe_framework_core'
|
||||||
- 'silverstripe_framework_cms'
|
- 'silverstripe_framework_cms'
|
||||||
|
- 'roundcubemail_web'
|
||||||
|
- 'phpmyadmin_web'
|
||||||
|
- 'phpbb_web'
|
||||||
|
- 'drupal_core'
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
|
@ -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(
|
fn test_repository(
|
||||||
name: &str,
|
name: &str,
|
||||||
repository: &str,
|
repository: &str,
|
||||||
@ -232,13 +276,13 @@ fn test_repository(
|
|||||||
}
|
}
|
||||||
Err(error) => {
|
Err(error) => {
|
||||||
results.push(TestResult::Error(format!(
|
results.push(TestResult::Error(format!(
|
||||||
"❌ [{thread_name}][{name}]: {error:?}"
|
"❌ [{thread_name}][{name}]: {error} ({error:?})"
|
||||||
)));
|
)));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
Err(error) => {
|
Err(error) => {
|
||||||
results.push(TestResult::Error(format!(
|
results.push(TestResult::Error(format!(
|
||||||
"❌ [{thread_name}][{name}]: {error:?}"
|
"❌ [{thread_name}][{name}]: {error} ({error:?})"
|
||||||
)));
|
)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user