-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
152 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
name: Build ai-runner base Docker image | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- "runner/**" | ||
- "!runner/.devcontainer/**" | ||
push: | ||
branches: | ||
- main | ||
tags: | ||
- '*' | ||
paths: | ||
- "runner/**" | ||
- "!runner/.devcontainer/**" | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
docker: | ||
name: Docker image generation | ||
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'workflow_dispatch' | ||
permissions: | ||
packages: write | ||
contents: read | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Check out code | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
# Check https://github.com/livepeer/go-livepeer/pull/1891 | ||
# for ref value discussion | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.CI_DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.CI_DOCKERHUB_TOKEN }} | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: | | ||
livepeer/ai-runner | ||
tags: | | ||
type=sha | ||
type=ref,event=pr | ||
type=ref,event=tag | ||
type=sha,format=long | ||
type=ref,event=branch | ||
type=semver,pattern={{version}} | ||
type=semver,pattern={{major}}.{{minor}} | ||
type=semver,pattern={{version}},prefix=v | ||
type=semver,pattern={{major}}.{{minor}},prefix=v | ||
type=raw,value=latest,enable={{is_default_branch}} | ||
type=raw,value=base,enable={{is_default_branch}} | ||
type=raw,value=${{ github.event.pull_request.head.ref }} | ||
type=raw,value=stable,enable=${{ startsWith(github.event.ref, 'refs/tags/v') }} | ||
- name: Build and push runner docker image | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: "{{defaultContext}}:runner" | ||
platforms: linux/amd64 | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
file: "Dockerfile" | ||
labels: ${{ steps.meta.outputs.labels }} | ||
cache-from: type=registry,ref=livepeerci/build:cache | ||
cache-to: type=registry,ref=livepeerci/build:cache,mode=max |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Check OpenAPI spec and Golang bindings | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
check-openapi-and-bindings: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11" | ||
cache: "pip" | ||
|
||
- name: Install Python dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r runner/requirements.txt | ||
- name: Generate AI OpenAPI specification | ||
working-directory: runner | ||
run: | | ||
python gen_openapi.py | ||
- name: Check for OpenAPI spec changes | ||
run: | | ||
if ! git diff --exit-code; then | ||
echo "::error:: OpenAPI spec has changed. Please run 'python gen_openapi.py' in the 'runner' directory and commit the changes." | ||
exit 1 | ||
fi | ||
- name: Generate Go bindings | ||
run: make | ||
|
||
- name: Check for Go bindings changes | ||
run: | | ||
if ! git diff --exit-code; then | ||
echo "::error::Go bindings have changed. Please run 'make' at the root of the repository and commit the changes." | ||
exit 1 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters