Skip to content

Commit

Permalink
Merge pull request #30 from bugsnag/release/v0.1.0
Browse files Browse the repository at this point in the history
Release v0.1.0
  • Loading branch information
lemnik authored Mar 27, 2024
2 parents c75a19b + 8260305 commit f6254e5
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 16 deletions.
10 changes: 10 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,13 @@ steps:
- docker-compose#v3.7.0:
run: bugsnag-gradle-plugin
command: ['./gradlew', 'bugsnag-gradle-plugin:test']

- label: 'e2e tests'
timeout_in_minutes: 30
agents:
queue: macos-14
env:
JAVA_VERSION: '17'
commands:
- bundle install
- bundle exec maze-runner
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## TBD
## 0.1.0 (2024-03-27)

Initial Release of BugSnag Gradle Plugin
25 changes: 14 additions & 11 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ GEM
appium_lib_core (5.4.0)
faye-websocket (~> 0.11.0)
selenium-webdriver (~> 4.2, < 4.6)
bugsnag (6.26.0)
bugsnag (6.26.4)
concurrent-ruby (~> 1.0)
bugsnag-maze-runner (8.13.2)
bugsnag-maze-runner (9.5.0)
appium_lib (~> 12.0.0)
appium_lib_core (~> 5.4.0)
bugsnag (~> 6.24)
Expand All @@ -29,7 +29,7 @@ GEM
webrick (~> 1.7.0)
builder (3.2.4)
childprocess (4.1.0)
concurrent-ruby (1.2.2)
concurrent-ruby (1.2.3)
cucumber (7.1.0)
builder (~> 3.2, >= 3.2.4)
cucumber-core (~> 10.1, >= 10.1.0)
Expand Down Expand Up @@ -62,7 +62,7 @@ GEM
cucumber-core (~> 10.1, >= 10.1.0)
cucumber-cucumber-expressions (~> 14.0, >= 14.0.0)
curb (0.9.11)
diff-lcs (1.5.0)
diff-lcs (1.5.1)
dogstatsd-ruby (5.5.0)
ecma-re-validator (0.4.0)
regexp_parser (~> 2.2)
Expand All @@ -78,19 +78,21 @@ GEM
regexp_parser (~> 2.0)
simpleidn (~> 0.2)
uri_template (~> 0.7)
mime-types (3.5.1)
mime-types (3.5.2)
mime-types-data (~> 3.2015)
mime-types-data (3.2023.1205)
mime-types-data (3.2024.0305)
multi_test (0.1.2)
nokogiri (1.15.5-arm64-darwin)
nokogiri (1.16.3-arm64-darwin)
racc (~> 1.4)
nokogiri (1.16.3-x86_64-darwin)
racc (~> 1.4)
optimist (3.0.1)
os (1.0.1)
power_assert (2.0.3)
racc (1.7.3)
rack (2.2.8)
rack (2.2.9)
rake (12.3.3)
regexp_parser (2.8.3)
regexp_parser (2.9.0)
rexml (3.2.6)
rubyzip (2.3.2)
selenium-webdriver (4.5.0)
Expand All @@ -117,9 +119,10 @@ GEM

PLATFORMS
arm64-darwin-22
x86_64-darwin-19

DEPENDENCIES
bugsnag-maze-runner (~> 8.0)
bugsnag-maze-runner (~> 9.0)

BUNDLED WITH
2.4.17
2.4.8
4 changes: 2 additions & 2 deletions bugsnag-gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ tasks.test {
}

kotlin {
jvmToolchain(11)
jvmToolchain(17)
}

java {
targetCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_17
}

val bugsnagCliDir = File(rootProject.projectDir, "bugsnag-cli")
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.android-ci
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN mv bundletool-all-1.4.0.jar bundletool.jar

# Install AGP specific system and Android requirements
RUN apt-get update > /dev/null
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y git ruby-full make libcurl4-openssl-dev gcc g++ openjdk-11-jdk
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y git ruby-full make libcurl4-openssl-dev gcc g++ openjdk-17-jdk
RUN apt-get clean > /dev/null

# Install Ruby and other maze-runner requirements
Expand Down

0 comments on commit f6254e5

Please sign in to comment.