[](https://gitpod.io/#https://github.com/[your GitHub username]/[your repository])
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone https://github.com/tianhaoz95/test-drive-flutter-github-actions.git | |
cd ./test-drive-flutter-github-actions | |
flutter channel master | |
flutter upgrade |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
image: | |
file: .gitpod.dockerfile | |
github: | |
prebuilds: | |
master: true | |
branches: false | |
pullRequests: true | |
pullRequestsFromForks: false | |
addCheck: false | |
addComment: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM gitpod/workspace-full:latest | |
ENV ANDROID_HOME=/home/gitpod/android-sdk \ | |
FLUTTER_HOME=/home/gitpod/flutter | |
USER root | |
RUN curl https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \ | |
curl https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list && \ | |
apt-get update && \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# We are the cool kids dancing on the bleeding edge of technology | |
flutter channel master | |
flutter upgrade | |
# This command checks if everything is good to go | |
flutter doctor -v | |
# Go inside your repository. It's also okay to use to level | |
# Flutter project directory as the repository, but it will | |
# be more effort to maintain |
OlderNewer