Skip to content
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

Nightly job to test with Pekko/Pekko-HTTP snapshots #209

Merged
merged 3 commits into from
Dec 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/nightly-snapshot-dependency-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Nightly Snapshot Dependency Test

on:
schedule:
- cron: "0 1 * * *"
workflow_dispatch:

jobs:
sbt:
name: sbt test with pekko/pekko-main 1.1 snapshots
runs-on: ubuntu-latest
if: github.repository == 'apache/incubator-pekko-grpc'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
fetch-depth: 0

- name: Setup Java 8
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 8

- name: Test
run: |-
cp .jvmopts-ci .jvmopts
sbt -Dpekko.build.pekko.version=main -Dpekko.build.pekko.http.version=main test