-
Notifications
You must be signed in to change notification settings - Fork 1
107 lines (100 loc) · 2.64 KB
/
test-setup-vexctl.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#
# Copyright 2023 The OpenVEX Authors
# SPDX-License-Identifier: Apache-2.0
#
name: test-vexctl-action
on:
pull_request:
push:
branches:
- 'main'
jobs:
test_vexctl_action:
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.os }}
permissions: {}
name: Install vexctl and test presence in path
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Install vexctl
uses: ./
- name: Check install!
run: vexctl version
- name: Check root directory
run: |
if [[ $(git diff --stat) != '' ]]; then
echo 'should be clean'
exit 1
else
exit 0
fi
shell: bash
test_vexctl_action_custom_dir_root:
runs-on: ubuntu-latest
permissions: {}
name: Install Custom vexctl and test presence in path with custom root dir
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Install vexctl
uses: ./
with:
install-dir: /usr/bin
use-sudo: true
- name: Check install!
run: vexctl version
- name: Check install dir!
run: |
[[ $(dirname "$(which vexctl)") == /usr/bin ]]
shell: bash
- name: Check root directory
run: |
[[ -z $(git diff --stat) ]]
shell: bash
test_vexctl_action_custom_dir:
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.os }}
permissions: {}
name: Install Custom path vexctl and test presence in path
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Install vexctl
uses: ./
with:
install-dir: "$HOME/.vexctltest"
- name: Check install!
run: vexctl version
- name: Check install dir!
run: |
[[ $(dirname "$(which vexctl)") == "$HOME/.vexctltest" ]]
shell: bash
- name: Check root directory
run: |
[[ -z $(git diff --stat) ]]
shell: bash
test_vexctl_action_wrong:
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.os }}
permissions: {}
name: Try to install a wrong vexctl
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Install vexctl
uses: ./
with:
vexctl-release: 'honk'
continue-on-error: true