Skip to content
Open
Show file tree
Hide file tree
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
12 changes: 11 additions & 1 deletion .github/workflows/lcm-integration-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,17 @@ jobs:
with:
submodules: 'true'
token: ${{ secrets.TOKEN_GITHUB_YENKINS }}
- name: Build local image
- name: Set up JDK (required for JRuby)
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: '11'
- name: Set up JRuby + Bundler
uses: ruby/setup-ruby@v1
with:
ruby-version: 'jruby-9.4.12.1'
bundler-cache: true
- name: Build image
run: |
bundle exec rake -f lcm.rake test:docker:build
- name: Build gems
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Quick and Dirty lcm runner
on:
workflow_dispatch:

jobs:
call-e2e:
uses: ./.github/workflows/lcm-integration-e2e.yaml
secrets: inherit
permissions:
id-token: write
contents: read
with:
AUTO_MERGE: true
base_branch: main
pr_number: "123"

Loading