[go: nahoru, domu]

Skip to content

Adds a pod serving sample app. #335

Adds a pod serving sample app.

Adds a pod serving sample app. #335

Workflow file for this run

name: Build Status
# Step 1: Build on pull-requests or pushes to main
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
# Step 2: Build the samples
build-java:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
regex:
- "AdvancedExample"
- "BasicExample"
- "ExoPlayerExample"
- "SampleVideoPlayer"
- "PodServingExample"
steps:
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Clone Repo
uses: actions/checkout@v1
- name: Set commit range (push to the main branch, for example, merge)
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
run: echo "COMMIT_RANGE="${{ github.event.before }}.."" >> $GITHUB_ENV
- name: Set commit range (pull request)
if: github.event_name == 'pull_request'
run: echo "COMMIT_RANGE="HEAD~.."" >> $GITHUB_ENV
- name: Build
run: .github/workflows/build/build.sh
shell: bash
env:
COMMIT_RANGE: ${{ env.COMMIT_RANGE }}
REGEX: ${{ matrix.regex }}