mirror of
https://github.com/github/codeql-action.git
synced 2026-04-29 02:18:47 +00:00
47 lines
1.4 KiB
YAML
47 lines
1.4 KiB
YAML
name: "Start proxy"
|
|
description: "Tests that the proxy can be initialised on all platforms"
|
|
operatingSystems:
|
|
- ubuntu
|
|
- macos
|
|
- windows
|
|
versions:
|
|
- linked
|
|
steps:
|
|
- uses: ./../action/init
|
|
with:
|
|
languages: csharp
|
|
tools: ${{ steps.prepare-test.outputs.tools-url }}
|
|
|
|
- name: Setup proxy for registries
|
|
id: proxy
|
|
uses: ./../action/start-proxy
|
|
with:
|
|
registry_secrets: |
|
|
[
|
|
{
|
|
"type": "maven_repository",
|
|
"url": "https://repo.maven.apache.org/maven2/"
|
|
},
|
|
{
|
|
"type": "maven_repository",
|
|
"url": "https://repo1.maven.org/maven2"
|
|
}
|
|
]
|
|
|
|
- name: Print proxy outputs
|
|
run: |
|
|
echo "${{ steps.proxy.outputs.proxy_host }}"
|
|
echo "${{ steps.proxy.outputs.proxy_port }}"
|
|
echo "${{ steps.proxy.outputs.proxy_urls }}"
|
|
|
|
- name: Fail if proxy outputs are not set
|
|
if: (!steps.proxy.outputs.proxy_host) || (!steps.proxy.outputs.proxy_port) || (!steps.proxy.outputs.proxy_ca_certificate) || (!steps.proxy.outputs.proxy_urls)
|
|
run: exit 1
|
|
|
|
- name: Fail if proxy_urls does not contain all registries
|
|
if: |
|
|
join(fromJSON(steps.proxy.outputs.proxy_urls)[*].type, ',') != 'maven_repository,maven_repository'
|
|
|| !contains(steps.proxy.outputs.proxy_urls, 'https://repo.maven.apache.org/maven2/')
|
|
|| !contains(steps.proxy.outputs.proxy_urls, 'https://repo1.maven.org/maven2')
|
|
run: exit 1
|