Skip to content

Commit

Permalink
add files back
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnBuhanan committed Nov 15, 2023
1 parent 92310e5 commit 9571511
Show file tree
Hide file tree
Showing 2 changed files with 151 additions and 0 deletions.
65 changes: 65 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
#name: CI
#
#on:
# # Only run push on main
# push:
# branches:
# - main
# paths-ignore:
# - '**/*.md'
# # Always run on PRs
# pull_request:
# branches: [ main ]
# merge_group:
#
#concurrency:
# group: ci-${{ github.ref }}-${{ github.head_ref }}
# cancel-in-progress: true
#
#jobs:
# build:
# runs-on: macOS-latest
# env:
# # Test on API 30 because that's the first version with ATDs
# API_LEVEL: '30'
# AVD_TARGET: 'aosp_atd'
# steps:
# - name: Checkout
# uses: actions/checkout@v3
# with:
# lfs: 'true'
#
# - name: Gradle Wrapper Validation
# uses: gradle/wrapper-validation-action@v1
#
# # - name: Check LFS files
# # uses: actionsdesk/[email protected]
#
# - name: Install JDK
# uses: actions/setup-java@v3
# with:
# distribution: 'zulu'
# java-version: '17'
#
# - name: Build and run tests
# id: gradle
# uses: gradle/gradle-build-action@v2
# with:
# arguments: check --continue --no-configuration-cache #testDebugUnitTest
# gradle-home-cache-cleanup: true
# cache-read-only: false
#
# - name: (Fail-only) Bundle the build report
# if: failure()
# run: find . -type d -name 'reports' | zip -@ -r build-reports.zip
#
# - name: (Fail-only) Upload the build report
# if: failure()
# uses: actions/upload-artifact@v3
# with:
# name: error-report
# path: build-reports.zip
#
## - name: Publish snapshot (main branch only)
## if: github.repository == 'slackhq/circuit' && github.ref == 'refs/heads/main'
## run: ./gradlew publish -PmavenCentralUsername=${{ secrets.SONATYPEUSERNAME }} -PmavenCentralPassword=${{ secrets.SONATYPEPASSWORD }} --no-configuration-cache
86 changes: 86 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
# Built application files
*.apk
*.aar
*.ap_
*.aab

# Files for the ART/Dalvik VM
*.dex

# Java class files
*.class

# Generated files
bin/
gen/
out/
# Uncomment the following line in case you need and you don't have the release build type files in your app
# release/

# Gradle files
.gradle/
build/

# Local configuration file (sdk path, etc)
local.properties

# Proguard folder generated by Eclipse
proguard/

# Log Files
*.log

# Android Studio Navigation editor temp files
.navigation/

# Android Studio captures folder
captures/

# IntelliJ
*.idea
*.iml
.idea/workspace.xml
.idea/tasks.xml
.idea/gradle.xml
.idea/assetWizardSettings.xml
.idea/dictionaries
.idea/libraries
# Android Studio 3 in .gitignore file.
.idea/caches
.idea/modules.xml
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
.idea/navEditor.xml

# Keystore files
# Uncomment the following lines if you do not want to check your keystore files in.
#*.jks
#*.keystore

# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild
.cxx/

# Google Services (e.g. APIs or Firebase)
# google-services.json

# Freeline
freeline.py
freeline/
freeline_project_description.json

# fastlane
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
fastlane/readme.md

# Version control
vcs.xml

# lint
lint/intermediates/
lint/generated/
lint/outputs/
lint/tmp/
# lint/reports/

0 comments on commit 9571511

Please sign in to comment.