summaryrefslogtreecommitdiffstats
path: root/ci/package_list.sh
blob: 0decfc0d8974f706fb5bc4ad40e9c884b9b6e7b2 (plain)
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
#!/bin/bash

# Note: Must be in the expected installation order
RELEASE_PACKAGES=(
    tedge
    tedge_mapper
    tedge_agent
    tedge_watchdog
    tedge_apt_plugin
    tedge_apama_plugin
    c8y_log_plugin
    c8y_configuration_plugin
)
export RELEASE_PACKAGES

TEST_PACKAGES=(
    sawtooth_publisher
    tedge_dummy_plugin
)
export TEST_PACKAGES

EXTERNAL_ARM_PACKAGES=(
    mosquitto-clients
    mosquitto
    libmosquitto1
    collectd-core
    collectd
)
export EXTERNAL_ARM_PACKAGES

EXTERNAL_AMD64_PACKAGES=(
    mosquitto
    libmosquitto1
    collectd-core
)
export EXTERNAL_AMD64_PACKAGES