2020-04-03 20:35:12 -04:00
|
|
|
# Rebuild and push with
|
|
|
|
#
|
|
|
|
# cd .gitlab-ci/
|
2020-04-03 20:03:24 -04:00
|
|
|
# podman build --format docker --no-cache -t registry.gitlab.gnome.org/gnome/gnome-shell/extension-ci:v2 .
|
|
|
|
# podman push registry.gitlab.gnome.org/gnome/gnome-shell/extension-ci:v2
|
2020-04-03 20:35:12 -04:00
|
|
|
#
|
|
|
|
|
2020-04-03 20:03:24 -04:00
|
|
|
FROM registry.fedoraproject.org/fedora:32
|
2019-02-12 23:49:37 -05:00
|
|
|
|
|
|
|
RUN dnf -y update && dnf -y upgrade && \
|
2019-07-04 11:35:48 -04:00
|
|
|
dnf install -y 'dnf-command(copr)' git && \
|
2019-02-12 23:49:37 -05:00
|
|
|
|
2020-04-03 20:03:24 -04:00
|
|
|
# For syntax checks with `find . -name '*.js' -exec js68 -c -s '{}' ';'`
|
|
|
|
dnf install -y findutils mozjs68-devel && \
|
2019-02-12 23:49:37 -05:00
|
|
|
|
|
|
|
# For static analysis with eslint
|
|
|
|
dnf install -y nodejs && \
|
|
|
|
npm install -g eslint && \
|
|
|
|
|
|
|
|
# Shameless plug for my own tooling; useful for generating zip
|
|
|
|
dnf copr enable -y fmuellner/gnome-shell-ci && \
|
|
|
|
dnf install -y gnome-extensions-tool meson && \
|
|
|
|
|
2020-04-03 20:03:24 -04:00
|
|
|
dnf clean all
|