File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 3838 uptime_kuma_2_changed:
3939 - 'apps/uptime-kuma-2/**'
4040 - 'scripts/apps/uptime-kuma-2/**'
41+ sinusbot_changed:
42+ - 'apps/sinusbot/**'
4143 base_changed:
4244 - 'base/**'
4345 - 'scripts/base/ampstart.sh'
4850 set -euo pipefail
4951 # Default matrix when not a push: build all apps
5052 if [ "${{ github.event_name }}" != "push" ]; then
51- echo 'apps_json=["postgresql","uptime-kuma-2"]' >> "$GITHUB_OUTPUT"
53+ echo 'apps_json=["postgresql","uptime-kuma-2","sinusbot" ]' >> "$GITHUB_OUTPUT"
5254 exit 0
5355 fi
5456
6163 apps=()
6264 if [ "${{ steps.filter.outputs.postgresql_changed || 'false' }}" = "true" ]; then apps+=('"postgresql"'); fi
6365 if [ "${{ steps.filter.outputs.uptime_kuma_2_changed || 'false' }}" = "true" ]; then apps+=('"uptime-kuma-2"'); fi
66+ if [ "${{ steps.filter.outputs.sinusbot_changed || 'false' }}" = "true" ]; then apps+=('"sinusbot"'); fi
6467
6568 if [ "${#apps[@]}" -eq 0 ]; then
6669 echo 'apps_json=[]' >> "$GITHUB_OUTPUT"
Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ ENV DEBIAN_FRONTEND="noninteractive"
1111RUN set -eux; \
1212 apt-get update; \
1313 apt-get install -o APT::Keep-Downloaded-Packages="false" -y --no-install-recommends \
14- x11vnc xvfb libxcursor1 ca-certificates curl bzip2 libnss3 libegl1 x11-xkb-utils libasound2t64 libpci3 libxslt1.1 libxkbcommon0 libxss1 libxcomposite1 libglib2.0-0t64 less; \
14+ ca-certificates bzip2 unzip curl python3 procps x11vnc xvfb libxcursor1 libnss3 \
15+ libegl1 libasound2t64 libglib2.0-0t64 libxcomposite-dev less jq libevent-2.1-7t64 \
16+ libxcb-xinerama0 liblcms2-2 libatomic1 libxcb-icccm4 libxcb-keysyms1 libxcb-randr0 \
17+ libxcb-render-util0 libxcb-shape0 libxcb-xkb1 libxkbcommon0 libxkbcommon-x11-0 libpci3 libxslt1.1; \
1518 apt-get clean; \
1619 rm -rf /var/lib/apt/lists/*
You can’t perform that action at this time.
0 commit comments