blob: 3e9d7a7eb117c225d4e9d9a9e81bc9b8d8103d8c [file] [log] [blame]
Sylvain Desbureauxa5bb31b2020-04-07 12:02:22 +02001# Copyright © 2018 AT&T Intellectual Property. All rights reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15make-contrib: make-contrib-awx make-contrib-netbox make-contrib-core
16
17make-contrib-awx:
18 cd components && helm dep up awx && helm lint awx
19
20make-contrib-netbox:
21 cd components && helm dep up netbox && helm lint netbox
22
23make-contrib-core:
24 helm dep up . && helm lint .
25
26clean:
27 @find . -type f -name '*.tgz' -delete
28 @find . -type f -name '*.lock' -delete