Skip to content

Commit

Permalink
ci test
Browse files Browse the repository at this point in the history
  • Loading branch information
Bořek Leikep committed Jan 23, 2024
1 parent 1de0a5d commit 0cd7c57
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/baseline-profile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Baseline Profile Updater

on: pull_request

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }}
lfs: 'true'

- name: Set up JDK 18
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 18

- name: Set up Android SDK
uses: android-actions/setup-android@v3

- name: Enable KVM
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm
- name: Generate baseline profiles
run: |
./gradlew :catalog:generateReleaseBaselineProfile :icons:generateBaselineProfile :illustrations:generateBaselineProfile :ui:generateBaselineProfile \
-Pandroid.testInstrumentationRunnerArguments.androidx.benchmark.enabledRules=baselineprofile
- name: Check for changes
id: check_changes
run: |
if git diff --exit-code; then
echo "changes_exist=false" >> "$GITHUB_OUTPUT"
else
echo "changes_exist=true" >> "$GITHUB_OUTPUT"
fi
- name: Commit and push files
if: ${{ steps.check_changes.outputs.changes_exist == 'true' }}
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
run: |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null
ssh-add - <<< "${{ secrets.GH_ACTION_DEPLOY_PRIVATE_KEY }}"
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add -A
git commit -m "Baseline and startup profiles generated."
git push [email protected]:$GITHUB_REPOSITORY.git

0 comments on commit 0cd7c57

Please sign in to comment.