Skip to content
Merged
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
61 changes: 61 additions & 0 deletions .github/workflows/ci-smoke.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: CI Smoke Checks

on:
pull_request:
push:
branches:
- main
workflow_dispatch:

env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

jobs:
sayhello-build-run:
name: Sayhello Build and Run
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"

- name: Set up uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true

- name: Sync Python dependencies
run: uv sync

- name: Build sayhello pipeline
run: uv run ultrarag build examples/experiments/sayhello.yaml

- name: Run sayhello pipeline
run: uv run ultrarag run examples/experiments/sayhello.yaml

frontend-build:
name: Frontend Build
runs-on: ubuntu-latest
defaults:
run:
working-directory: ui/frontend
steps:
- name: Checkout
uses: actions/checkout@v5

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "24"
cache: npm
cache-dependency-path: ui/frontend/package-lock.json

- name: Install frontend dependencies
run: npm ci

- name: Build frontend
run: npm run build
7 changes: 4 additions & 3 deletions .github/workflows/dockerhub-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
env:
IMAGE_NAME: ${{ secrets.DOCKERHUB_USERNAME }}/ultrarag
IMAGE_TAG: v0.3.0
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

jobs:
check-recent-commits:
Expand All @@ -16,7 +17,7 @@ jobs:
should_build: ${{ steps.commit-check.outputs.should_build }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 1

Expand Down Expand Up @@ -59,7 +60,7 @@ jobs:
tag_suffix: ""
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Buildx
Expand All @@ -70,7 +71,7 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ${{ matrix.dockerfile }}
Expand Down
Loading