Skip to content

Commit d37395b

Browse files
joerundenjhilltjohnson31415alex-jw-brooks
committed
Initial port
This commit is a squash of the entire development history of text-generation-router Co-authored-by: Nick Hill <[email protected]> Co-authored-by: Travis Johnson <[email protected]> Co-authored-by: Alex Brooks <[email protected]> Signed-off-by: Joe Runde <[email protected]>
1 parent a4d27a7 commit d37395b

File tree

18 files changed

+2842
-2
lines changed

18 files changed

+2842
-2
lines changed

.dockerignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
aml
2+
target
3+
server/transformers

.github/workflows/build.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: "Build"
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- "main"
8+
paths-ignore:
9+
- "**.md"
10+
- "proto/**"
11+
pull_request:
12+
branches:
13+
- "main"
14+
paths-ignore:
15+
- "**.md"
16+
- "proto/**"
17+
18+
defaults:
19+
run:
20+
shell: bash
21+
22+
env:
23+
CI: true
24+
DOCKER_BUILDKIT: 1
25+
26+
jobs:
27+
build:
28+
runs-on: ubuntu-latest
29+
env:
30+
BUILDKIT_INLINE_CACHE: 1
31+
32+
steps:
33+
- name: "Checkout"
34+
uses: actions/checkout@v4
35+
36+
- name: "Set up Docker Buildx"
37+
uses: docker/setup-buildx-action@v3
38+
39+
- name: "Docker build"
40+
run: make build-router
41+
42+
- name: "Docker push"
43+
if: github.ref == 'refs/heads/main'
44+
run: make push-router-image

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.idea
2+
target
3+
fmaas-router/src/pb

0 commit comments

Comments
 (0)