-
-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Optimize CI a bit #232
Optimize CI a bit #232
Conversation
arch: | ||
description: 'CPU architecture of the system image - x86, x86_64 or arm64-v8a' | ||
required: false | ||
default: 'x86' | ||
emulator-options: | ||
description: 'command-line options used when launching the emulator' | ||
required: false | ||
default: '-no-window -gpu swiftshader_indirect -no-snapshot -noaudio -no-boot-anim' | ||
emulator-build: | ||
required: false | ||
description: 'build number of a specific version of the emulator binary to use' | ||
channel: | ||
description: 'Channel to download the SDK components from - `stable`, `beta`, `dev`, `canary`' | ||
required: false | ||
default: 'stable' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.github/workflows/main.yml
Outdated
- name: Cache Node | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.npm | ||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-node- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR, it's a bit hard to review with all the formatting changes. Feel free to create a new one with just action version bumps and create new issue to discuss other changes 👍 |
Follow up #230.