Skip to content

Commit

Permalink
Run redis in CI.
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <[email protected]>
  • Loading branch information
Yury-Fridlyand committed Sep 22, 2023
1 parent 5324040 commit e8d8a0b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/java-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
distribution: "temurin"
java-version: ${{ matrix.java }}

- name: Start Redis
run: docker run -p 6379:6379 -p 8001:8001 -d redis/redis

- name: Run benchmarks
working-directory: java/jabushka
run: ./gradlew :benchmark:run
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ jobs:
working-directory: java
run: cargo build

- name: Build with Gradle
- name: Start Redis
run: docker run -p 6379:6379 -p 8001:8001 -d redis/redis

- name: Build java part
working-directory: java/jabushka
run: ./gradlew --continue build

Expand Down

0 comments on commit e8d8a0b

Please sign in to comment.