Skip to content

Commit

Permalink
Merge pull request #552 from ec-europa/feature/DQA-0
Browse files Browse the repository at this point in the history
DQA-0: Toolkit requirements use new Gitlab url.
  • Loading branch information
jonhy81 authored Sep 15, 2022
2 parents ada6463 + 7020551 commit 8a4e0bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/TaskRunner/Commands/ToolCommands.php
Original file line number Diff line number Diff line change
Expand Up @@ -1081,7 +1081,7 @@ public function toolkitRequirements(array $options = [
$gitlab_check = 'FAIL (Missing environment variable: GITLAB_API_TOKEN)';
} else {
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'https://git.fpfis.eu/api/v4/users?username=qa-dashboard-api');
curl_setopt($curl, CURLOPT_URL, 'https://git.fpfis.tech.ec.europa.eu/api/v4/users?username=qa-dashboard-api');
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_HTTPHEADER, ["PRIVATE-TOKEN: $token"]);
curl_setopt($curl, CURLOPT_USERAGENT, 'Quality Assurance');
Expand Down Expand Up @@ -1123,8 +1123,8 @@ public function toolkitRequirements(array $options = [
$this->io()->title('Checking connections:');
$this->io()->definitionList(
['QA Endpoint access' => $endpoint_check],
['github.com oauth access' => $github_check],
['git.fpfis.eu oauth access' => $gitlab_check],
['GitHub oauth access' => $github_check],
['GitLab oauth access' => $gitlab_check],
['ASDA configuration' => $asda_check],
['NEXTCLOUD configuration' => $nextcloud_check],
);
Expand Down

0 comments on commit 8a4e0bf

Please sign in to comment.