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
14 changes: 7 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ on:
- 'pyproject.toml'
- 'uv.lock'
- 'mypy_allowlist.txt'
- '.github/workflows/ci.yaml'
- '.github/actions/**'
pull_request:
workflow_dispatch:

Expand Down Expand Up @@ -366,6 +368,10 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: |
packages/codeflash/package-lock.json
code_to_optimize/js/*/package-lock.json

- name: Install codeflash npm package dependencies
run: |
Expand Down Expand Up @@ -452,17 +458,11 @@ jobs:
- name: Install dependencies
run: uv sync

- name: Build codeflash-runtime JAR
- name: Build and install codeflash-runtime JAR
run: |
cd codeflash-java-runtime
mvn clean package -q -DskipTests
mvn install -q -DskipTests

- name: Verify Java installation
run: |
java -version
mvn --version

- name: Remove .git
if: matrix.remove_git
run: |
Expand Down
76 changes: 0 additions & 76 deletions .github/workflows/java-e2e-tests.yml

This file was deleted.

Loading