-
Notifications
You must be signed in to change notification settings - Fork 7
134 lines (126 loc) · 3.98 KB
/
test-setup-tejolote.yml
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# Copyright 2023 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: test-tejolote-action
on:
pull_request:
push:
branches:
- 'main'
jobs:
changes:
runs-on: ubuntu-latest
permissions:
pull-requests: read
outputs:
tejolote: ${{ steps.filter.outputs.tejolote }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
id: filter
with:
filters: |
tejolote:
- 'setup-tejolote/**'
- '.github/workflows/test-setup-tejolote.yml'
test_tejolote_action:
needs: changes
if: ${{ needs.changes.outputs.tejolote == 'true' }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
permissions: {}
name: Install tejolote and test presence in path
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install tejolote
uses: ./setup-tejolote
- name: Check install!
run: tejolote version
- name: Check root directory
run: |
if [[ $(git diff --stat) != '' ]]; then
echo 'should be clean'
exit 1
else
exit 0
fi
shell: bash
test_tejolote_action_custom_dir_root:
runs-on: ${{ matrix.os }}
needs: changes
if: ${{ needs.changes.outputs.tejolote == 'true' }}
strategy:
matrix:
os: [ubuntu-latest]
permissions: {}
name: Install Custom tejolote and test presence in path with custom root dir
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install tejolote
uses: ./setup-tejolote
with:
install-dir: /usr/bin
use-sudo: true
- name: Check install!
run: tejolote version
- name: Check install dir!
run: |
[[ $(dirname "$(which tejolote)") == /usr/bin ]]
shell: bash
- name: Check root directory
run: |
[[ -z $(git diff --stat) ]]
shell: bash
test_tejolote_action_custom_dir:
runs-on: ${{ matrix.os }}
needs: changes
if: ${{ needs.changes.outputs.tejolote == 'true' }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
permissions: {}
name: Install Custom path tejolote and test presence in path
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install tejolote
uses: ./setup-tejolote
with:
install-dir: "$HOME/.tejolotetest"
- name: Check install!
run: tejolote version
- name: Check install dir!
run: |
[[ $(dirname "$(which tejolote)") == "$HOME/.tejolotetest" ]]
shell: bash
- name: Check root directory
run: |
[[ -z $(git diff --stat) ]]
shell: bash
test_tejolote_action_wrong:
runs-on: ${{ matrix.os }}
needs: changes
if: ${{ needs.changes.outputs.tejolote == 'true' }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
permissions: {}
name: Try to install a wrong tejolote
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install tejolote
uses: ./setup-tejolote
with:
tejolote-release: 'honk'
continue-on-error: true