ci: Clean up apt cache and junk (#425)

This commit is contained in:
Shohei Ueda 2020-07-28 18:59:09 +09:00 committed by GitHub
parent 4cf5105929
commit 5d053d30d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View File

@ -39,6 +39,7 @@ jobs:
- run: docker-compose pull --quiet - run: docker-compose pull --quiet
if: github.event_name == 'pull_request' if: github.event_name == 'pull_request'
- run: make build - run: make build
- run: docker images
- run: make ci - run: make ci
- run: make all - run: make all
- run: docker-compose push - run: docker-compose push

View File

@ -11,6 +11,9 @@ RUN apt-get update && \
wget \ wget \
ssh \ ssh \
vim && \ vim && \
apt-get autoclean && \
apt-get clean && \
apt-get autoremove -y && \
rm -rf /var/lib/apt/lists/* && \ rm -rf /var/lib/apt/lists/* && \
npm i -g npm npm i -g npm
@ -33,8 +36,10 @@ ENV GITHUB_REPOSITORY_OWNER="peaceiris"
ENV GITHUB_ACTIONS="true" ENV GITHUB_ACTIONS="true"
ENV CI="true" ENV CI="true"
RUN git config --global init.defaultBranch main
WORKDIR /repo WORKDIR /repo
RUN rm -rf /git && \
git --version && \
git config --global init.defaultBranch main && \
git config --global init.defaultBranch
CMD [ "bash" ] CMD [ "bash" ]