Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
casimiro committed Sep 7, 2023
1 parent c45aef5 commit feaf0d7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/job-build-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,14 @@ jobs:
#if: ${{ false }}
runs-on: ${{ inputs.os }}
steps:
- name: 'Setup deps - apt-get gcc'
if: ${{ !env.ACT && contains(inputs.cc, 'gcc') }}
run: sudo apt-get update && sudo apt-get install -y ${CC} libstdc++-${CC#*-}-dev lcov

- name: 'Setup deps - apt-get clang'
if: ${{ !env.ACT && contains(inputs.cc, 'clang') }}
run: sudo apt-get update && sudo apt-get install -y ${CC} lcov

- uses: actions/checkout@v3
- name: 'Setup cache - work/ dir'
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion assets/release/Dockerfiles/Dockerfile.ubuntu-22.04
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get update && \
git \
pkg-config \
libglib2.0-dev \
clang \
clang-15 \
curl \
binfmt-support \
qemu-user-static
Expand Down
2 changes: 1 addition & 1 deletion src/wasm/ngx_wasm_ops.c
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ ngx_wasm_ops_plan_load(ngx_wasm_ops_plan_t *plan, ngx_log_t *log)
ngx_uint_t *fid;
ngx_array_t *ids;
ngx_wasm_op_t *op;
ngx_wasm_ops_pipeline_t *pipeline;
ngx_wasm_ops_pipeline_t *pipeline = NULL;

dd("enter");

Expand Down

0 comments on commit feaf0d7

Please sign in to comment.