-
Notifications
You must be signed in to change notification settings - Fork 456
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #543 from paulo-ferraz-oliveira/fix/log_location
Log to log_root+..._log except if ..._log is absolute
- Loading branch information
Showing
4 changed files
with
32 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ on: | |
jobs: | ||
ci: | ||
name: > | ||
Run checks and tests over ${{matrix.otp_vsn}} and ${{matrix.os}} | ||
Run Linux-based checks and tests over ${{matrix.otp_vsn}} and ${{matrix.os}} | ||
runs-on: ${{matrix.os}} | ||
container: | ||
image: erlang:${{matrix.otp_vsn}} | ||
|
@@ -23,3 +23,23 @@ jobs: | |
- uses: actions/checkout@v2 | ||
- run: rebar3 dialyzer | ||
- run: rebar3 eunit | ||
ci-windows: | ||
name: > | ||
Run Windows-based checks and tests over ${{matrix.otp_vsn}} and ${{matrix.os}} | ||
runs-on: ${{matrix.os}} | ||
strategy: | ||
matrix: | ||
otp_vsn: [23.2] | ||
os: [windows-latest] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: gleam-lang/[email protected] | ||
with: | ||
otp-version: ${{matrix.otp_vsn}} | ||
id: install_erlang | ||
- run: wget https://s3.amazonaws.com/rebar3/rebar3 -OutFile rebar3 | ||
shell: powershell | ||
- run: | | ||
& "${{steps.install_erlang.outputs.erlpath}}\bin\escript.exe" rebar3 dialyzer | ||
- run: | | ||
& "${{steps.install_erlang.outputs.erlpath}}\bin\escript.exe" rebar3 eunit |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters