File tree 1 file changed +12
-8
lines changed
1 file changed +12
-8
lines changed Original file line number Diff line number Diff line change 3
3
using : composite
4
4
steps :
5
5
- shell : sh
6
- # Omitting libiconv from glibc system
7
- # XXX: mysql-client needed? IMAP i don't think so anymore either
8
- # XXX: Set USE flags appropriately to i.e. avoid installing servers
9
- # (though if they're masked it doesn't matter)
10
- # XXX: For now this is nopped out since it doesn't run in a container yet
6
+ # This does nothing, as currently the Gentoo/ppc64 CI system is
7
+ # not running jobs containerized.
8
+ #
9
+ # - libiconv is not used, glibc iconv is instead
11
10
run : |
12
- emerge --noreplace \
11
+ for package in \
13
12
sys-apps/util-linux \
14
13
app-shells/bash \
15
14
app-admin/sudo \
47
46
net-analyzer/net-snmp \
48
47
net-nds/openldap \
49
48
dev-db/unixODBC \
50
- dev-db/postgresql \
51
- || true
49
+ dev-db/postgresql; do
50
+ echo $package
51
+ if ! portageq has_version / $package; then
52
+ echo "need to install $package"
53
+ exit 1
54
+ fi
55
+ done
You can’t perform that action at this time.
0 commit comments