-
Notifications
You must be signed in to change notification settings - Fork 3
76 lines (59 loc) · 1.82 KB
/
test-setup.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: test setup
on:
workflow_dispatch:
inputs:
VER_DOCKER_MAX:
description: 'Docker version to install'
required: false
type: string
default: "26.1.3"
pull_request:
branches: [ main ]
env:
REGISTRY: ghcr.io
FEATURE: microsoft/azure-orbital-space-sdk/spacefx-dev
jobs:
test-setup-amd64:
permissions:
contents: read
packages: read
uses: ./.github/workflows/run-setup-tests.yaml
with:
WORKFLOW_AGENT: ubuntu-latest
secrets:
GIT_HUB_USER_NAME: ${{ secrets.GIT_HUB_USER_NAME }}
GIT_HUB_USER_TOKEN: ${{ secrets.GIT_HUB_USER_TOKEN }}
SETUP_REPO_URL: ${{ secrets.SETUP_REPO_URL }}
test-setup-arm64:
permissions:
contents: read
packages: read
uses: ./.github/workflows/run-setup-tests.yaml
with:
WORKFLOW_AGENT: spacesdk-ubuntu-2204LTS-arm64
secrets:
GIT_HUB_USER_NAME: ${{ secrets.GIT_HUB_USER_NAME }}
GIT_HUB_USER_TOKEN: ${{ secrets.GIT_HUB_USER_TOKEN }}
SETUP_REPO_URL: ${{ secrets.SETUP_REPO_URL }}
test-setup-smb-on-amd64:
permissions:
contents: read
packages: read
uses: ./.github/workflows/run-setup-tests-smb-on.yaml
with:
WORKFLOW_AGENT: ubuntu-latest
secrets:
GIT_HUB_USER_NAME: ${{ secrets.GIT_HUB_USER_NAME }}
GIT_HUB_USER_TOKEN: ${{ secrets.GIT_HUB_USER_TOKEN }}
SETUP_REPO_URL: ${{ secrets.SETUP_REPO_URL }}
test-setup-smb-on-arm64:
permissions:
contents: read
packages: read
uses: ./.github/workflows/run-setup-tests-smb-on.yaml
with:
WORKFLOW_AGENT: spacesdk-ubuntu-2204LTS-arm64
secrets:
GIT_HUB_USER_NAME: ${{ secrets.GIT_HUB_USER_NAME }}
GIT_HUB_USER_TOKEN: ${{ secrets.GIT_HUB_USER_TOKEN }}
SETUP_REPO_URL: ${{ secrets.SETUP_REPO_URL }}