Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add basic oay support for http #445

Merged
merged 4 commits into from
Jul 18, 2022
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
52 changes: 39 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,19 +76,6 @@ jobs:
- name: Build
run: cargo build --all-features

build_oli:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-11
steps:
- uses: actions/checkout@v3
- name: Build
working-directory: ./oli
run: cargo build

unit:
runs-on: ${{ matrix.os }}
strategy:
Expand Down Expand Up @@ -120,6 +107,19 @@ jobs:
RUST_BACKTRACE: full
LD_LIBRARY_PATH: ${{ env.JAVA_HOME }}/lib/server:${{ env.LD_LIBRARY_PATH }}

build_oli:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-11
steps:
- uses: actions/checkout@v3
- name: Build
working-directory: ./oli
run: cargo build

unit_oli:
runs-on: ${{ matrix.os }}
strategy:
Expand All @@ -132,3 +132,29 @@ jobs:
- name: Test
working-directory: ./oli
run: cargo test

build_oay:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-11
steps:
- uses: actions/checkout@v3
- name: Build
working-directory: ./oay
run: cargo build

unit_oay:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-11
steps:
- uses: actions/checkout@v3
- name: Test
working-directory: ./oay
run: cargo test
Loading