diff --git a/.github/workflows/aicirt.yml b/.github/workflows/aicirt.yml index 4838cd75..aa2122ee 100644 --- a/.github/workflows/aicirt.yml +++ b/.github/workflows/aicirt.yml @@ -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/') diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index fbdcdccc..73557799 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -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 diff --git a/.github/workflows/cpp-rllm.yml b/.github/workflows/cpp-rllm.yml index 677dcd58..3c242fa6 100644 --- a/.github/workflows/cpp-rllm.yml +++ b/.github/workflows/cpp-rllm.yml @@ -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 diff --git a/.github/workflows/rllm.yml b/.github/workflows/rllm.yml index 6d7d774f..af859c03 100644 --- a/.github/workflows/rllm.yml +++ b/.github/workflows/rllm.yml @@ -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