Skip to content

Commit

Permalink
Script to build all images
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhailnov committed Feb 27, 2019
1 parent 53d0171 commit 970b8a6
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions build-all.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/usr/bin/env bash
# build all possible images

# build minimal images
for arch in i586 x86_64
do
export arch="$arch"

for rosaVersion in rosa2016.1 rosa2014.1
do
env rosaVersion="$rosaVersion" ./mkimage-minimal.sh
done

for rosaVersion in rosa2012.1 rosa2012lts
do
env rosaVersion="$rosaVersion" ./mkimage-minimal-2012.sh
done

# build standard images only of rosa2016.1
unset packagesList
env rosaVersion="rosa2016.1" type="std" systemd_networkd=1 ./mkimage-urpmi.sh
done

0 comments on commit 970b8a6

Please sign in to comment.