Skip to content

Commit

Permalink
Attempt fix build-linux-java-static checkout, temporary ssh
Browse files Browse the repository at this point in the history
  • Loading branch information
pdillinger committed Dec 15, 2023
1 parent 345b54c commit d197c57
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
9 changes: 8 additions & 1 deletion .github/actions/post-steps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ name: post-steps
runs:
using: composite
steps:
- uses: actions/checkout@v3
- name: Setup tmate session #TEMPORARY!
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3
timeout: 60
with:
limit-access-to-actor: true
- uses: actions/upload-artifact@v3.1.3
with:
path: "${{ runner.temp }}/test-results"
Expand All @@ -22,4 +29,4 @@ runs:
shell: bash
- uses: actions/upload-artifact@v3.1.3
with:
path: "${{ runner.temp }}/core_dumps"
path: "${{ runner.temp }}/core_dumps"
2 changes: 1 addition & 1 deletion .github/workflows/jobs-java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
container:
image: evolvedbinary/rocksjava:centos6_x64-be
steps:
- uses: actions/checkout@v4.1.0
- uses: actions/checkout@v3 # see https://github.com/actions/checkout/issues/1474
- uses: "./.github/actions/pre-steps"
- name: Set Java Environment
run: |-
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/jobs-linux-run-tests-san.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,22 @@ name: facebook/rocksdb/jobs-linux-run-tests-san
on: [push, pull_request]
jobs:
build-linux-clang10-asan:
runs-on:
runs-on:
labels: 32-core-ubuntu
container:
image: zjay437/rocksdb:0.6
steps:
- uses: actions/checkout@v4.1.0
- uses: "./.github/actions/pre-steps"
- name: Setup tmate session #TEMPORARY!
uses: mxschmitt/action-tmate@v3
timeout: 20
with:
limit-access-to-actor: true
- run: COMPILE_WITH_ASAN=1 CC=clang-10 CXX=clang++-10 ROCKSDB_DISABLE_ALIGNED_NEW=1 USE_CLANG=1 make V=1 -j32 check
- uses: "./.github/actions/post-steps"
build-linux-clang10-ubsan:
runs-on:
runs-on:
labels: 16-core-ubuntu
container:
image: zjay437/rocksdb:0.6
Expand All @@ -22,7 +27,7 @@ jobs:
- run: COMPILE_WITH_UBSAN=1 OPT="-fsanitize-blacklist=.circleci/ubsan_suppression_list.txt" CC=clang-10 CXX=clang++-10 ROCKSDB_DISABLE_ALIGNED_NEW=1 USE_CLANG=1 make V=1 -j32 ubsan_check
- uses: "./.github/actions/post-steps"
build-linux-clang10-mini-tsan:
runs-on:
runs-on:
labels: 32-core-ubuntu
container:
image: zjay437/rocksdb:0.6
Expand Down

0 comments on commit d197c57

Please sign in to comment.