Skip to content

Commit

Permalink
upload build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoskal committed Jan 24, 2024
1 parent ef26c9c commit 04fa142
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/aicirt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ jobs:
working-directory: aicirt
- name: Release script
run: ./scripts/release.sh --xz
- name: Artifact upload
uses: actions/upload-artifact@v4
with:
name: aicirt-xz
path: target/dist/*.tar.xz
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
strategy:
fail-fast: false
matrix:
language: [ 'javascript-typescript', 'python' ]
language: [ 'javascript-typescript', 'python', 'c-cpp' ]
# CodeQL supports [ 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' ]
# Use only 'java-kotlin' to analyze code written in Java, Kotlin or both
# Use only 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cpp-rllm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,8 @@ jobs:
- name: Build cpp-rllm
run: cargo build --verbose --release --no-default-features
working-directory: cpp-rllm
- name: Artifact upload
uses: actions/upload-artifact@v4
with:
name: cpp-rllm
path: target/release/cpp-rllm
6 changes: 6 additions & 0 deletions .github/workflows/rllm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,9 @@ jobs:
- name: Build rLLM
run: cargo build --verbose --release
working-directory: rllm

- name: Artifact upload
uses: actions/upload-artifact@v4
with:
name: cuda-rllm
path: target/release/rllm-server

0 comments on commit 04fa142

Please sign in to comment.