Compare commits

..

No commits in common. "main" and "test12" have entirely different histories.
main ... test12

2 changed files with 0 additions and 9 deletions

View File

@ -71,7 +71,6 @@ jobs:
if: steps.check_image.outputs.exists == 'false'
run: |
docker buildx build \
--platform linux/amd64,linux/arm64 \
--build-arg FLUTTER_VERSION=${{ env.FLUTTER_VERSION }} \
--provenance=true \
--sbom=true \

View File

@ -13,8 +13,6 @@ RUN apt-get install -y \
libgtk-3-dev liblzma-dev \
libstdc++-12-dev
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
ENV FLUTTER_HOME=/opt/flutter
ENV PATH="$FLUTTER_HOME/bin:$PATH"
@ -26,12 +24,6 @@ RUN git config --global --add safe.directory /opt/flutter
RUN flutter --version
RUN rm -rf $FLUTTER_HOME/.pub-cache \
$FLUTTER_HOME/examples \
$FLUTTER_HOME/dev \
$FLUTTER_HOME/.git \
$FLUTTER_HOME/packages/flutter_tools/test
WORKDIR /workspace
CMD [ "bash" ]