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
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ jobs:
os:
- ubuntu-latest
otp:
- "29"
- "28"
- "27"
- "26"
- "25"
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- run: make
- run: make unit_tests

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PROJECT=ibrowse
PLT_APPS=erts kernel stdlib ssl crypto public_key
TEST_ERLC_OPTS=-pa ../ibrowse/ebin
TEST_ERLC_OPTS=-pa ebin

include erlang.mk

Expand Down
3 changes: 3 additions & 0 deletions src/ibrowse.erl
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@

-module(ibrowse).
-behaviour(gen_server).

-compile(nowarn_deprecated_catch).

%%--------------------------------------------------------------------
%% Include files
%%--------------------------------------------------------------------
Expand Down
3 changes: 3 additions & 0 deletions src/ibrowse_http_client.erl
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
%%%-------------------------------------------------------------------
-module(ibrowse_http_client).
-behaviour(gen_server).

-compile(nowarn_deprecated_catch).

%%--------------------------------------------------------------------
%% Include files
%%--------------------------------------------------------------------
Expand Down
3 changes: 3 additions & 0 deletions src/ibrowse_lb.erl
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
-module(ibrowse_lb).
-author(chandru).
-behaviour(gen_server).

-compile(nowarn_deprecated_catch).

%%--------------------------------------------------------------------
%% Include files
%%--------------------------------------------------------------------
Expand Down
2 changes: 2 additions & 0 deletions src/ibrowse_lib.erl
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
-compile(export_all).
-endif.

-compile(nowarn_deprecated_catch).

-include("ibrowse.hrl").

-ifdef(EUNIT).
Expand Down
2 changes: 1 addition & 1 deletion test/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
IBROWSE_EBIN_PATH=../../ibrowse/ebin
IBROWSE_EBIN_PATH=../ebin

compile:
@erl -pa $(IBROWSE_EBIN_PATH) -make
Expand Down
3 changes: 3 additions & 0 deletions test/ibrowse_load_test.erl
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
-module(ibrowse_load_test).
%%-compile(export_all).

-compile(nowarn_deprecated_catch).

-export([
start/3,
query_state/0,
Expand Down
4 changes: 3 additions & 1 deletion test/ibrowse_test.erl
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@
socks5_auth_fail/0
]).

-include_lib("ibrowse/include/ibrowse.hrl").
-include("../include/ibrowse.hrl").

-compile(nowarn_deprecated_catch).

%%------------------------------------------------------------------------------
%% Unit Tests
Expand Down
3 changes: 3 additions & 0 deletions test/ibrowse_test_server.erl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
%%% Created : 17 Oct 2010 by Chandrashekhar Mullaparthi <chandrashekhar.mullaparthi@t-mobile.co.uk>

-module(ibrowse_test_server).

-compile(nowarn_deprecated_catch).

-export([
start_server/0,
start_server/2,
Expand Down