Skip to content

Commit

Permalink
Drop full test (pb with CI) & no more build dev
Browse files Browse the repository at this point in the history
  • Loading branch information
guimard committed Mar 3, 2024
1 parent a5077ac commit e50b57e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions build-all
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

set -e

LIST=${LIST:-pg base portal manager full ssoaas-fastcgi-server cron dev}
LIST=${LIST:-pg base portal manager full ssoaas-fastcgi-server cron}
#LIST=${LIST:-pg base portal manager full ssoaas-fastcgi-server cron dev}

for i in $LIST; do
(
Expand All @@ -19,8 +20,10 @@ for i in $LIST; do
docker push $NAME
fi
fi
if test -x test; then
./test
if test "$i" != "full"; then
if test -x test; then
./test
fi
fi
)
done
Expand Down

0 comments on commit e50b57e

Please sign in to comment.