Skip to content

Commit

Permalink
update branch
Browse files Browse the repository at this point in the history
  • Loading branch information
plux committed Sep 18, 2024
1 parent c40ad76 commit 5eb88b3
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 51 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ jobs:
run: rebar3 compile
- name: Escriptize LSP Server
run: rebar3 escriptize
- name: Store LSP Server Escript
uses: actions/upload-artifact@v2
with:
name: erlang_ls
path: _build/default/bin/erlang_ls
# - name: Store LSP Server Escript
# uses: actions/upload-artifact@v2
# with:
# name: erlang_ls
# path: _build/default/bin/erlang_ls
- name: Check formatting
run: rebar3 fmt -c
- name: Lint
Expand All @@ -52,11 +52,11 @@ jobs:
run: epmd -daemon
- name: Run CT Tests
run: rebar3 ct
- name: Store CT Logs
uses: actions/upload-artifact@v2
with:
name: ct-logs
path: _build/test/logs
# - name: Store CT Logs
# uses: actions/upload-artifact@v2
# with:
# name: ct-logs
# path: _build/test/logs
- name: Run PropEr Tests
run: rebar3 proper --cover --constraint_tries 100
- name: Run Checks
Expand All @@ -68,13 +68,13 @@ jobs:
- name: Produce Documentation
run: rebar3 edoc
if: ${{ matrix.otp-version == '24' }}
- name: Publish Documentation
uses: actions/upload-artifact@v2
with:
name: edoc
path: |
apps/els_core/doc
apps/els_lsp/doc
# - name: Publish Documentation
# uses: actions/upload-artifact@v2
# with:
# name: edoc
# path: |
# apps/els_core/doc
# apps/els_lsp/doc
windows:
runs-on: windows-latest
steps:
Expand All @@ -94,11 +94,11 @@ jobs:
run: erl -sname a -noinput -eval "halt(0)."
- name: Run CT Tests
run: rebar3 ct
- name: Store CT Logs
uses: actions/upload-artifact@v2
with:
name: ct-logs
path: _build/test/logs
# - name: Store CT Logs
# uses: actions/upload-artifact@v2
# with:
# name: ct-logs
# path: _build/test/logs
- name: Run PropEr Tests
run: rebar3 proper --cover --constraint_tries 100
- name: Run Checks
Expand Down
58 changes: 29 additions & 29 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ jobs:
run: rebar3 compile
- name: Escriptize LSP Server
run: rebar3 escriptize
- name: Store LSP Server Escript
uses: actions/upload-artifact@v2
with:
name: erlang_ls
path: _build/default/bin/erlang_ls
# - name: Store LSP Server Escript
# uses: actions/upload-artifact@v2
# with:
# name: erlang_ls
# path: _build/default/bin/erlang_ls
- name: Check formatting
run: rebar3 fmt -c
- name: Lint
Expand All @@ -56,11 +56,11 @@ jobs:
run: epmd -daemon
- name: Run CT Tests
run: rebar3 ct
- name: Store CT Logs
uses: actions/upload-artifact@v2
with:
name: ct-logs
path: _build/test/logs
# - name: Store CT Logs
# uses: actions/upload-artifact@v2
# with:
# name: ct-logs
# path: _build/test/logs
- name: Run PropEr Tests
run: rebar3 proper --cover --constraint_tries 100
- name: Run Checks
Expand All @@ -72,13 +72,13 @@ jobs:
- name: Produce Documentation
run: rebar3 edoc
if: ${{ matrix.otp-version == '24' }}
- name: Publish Documentation
uses: actions/upload-artifact@v2
with:
name: edoc
path: |
apps/els_core/doc
apps/els_lsp/doc
# - name: Publish Documentation
# uses: actions/upload-artifact@v2
# with:
# name: edoc
# path: |
# apps/els_core/doc
# apps/els_lsp/doc

# Make release artifacts : erlang_ls
- name: Make erlang_ls-linux.tar.gz
Expand All @@ -103,18 +103,18 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Install Erlang
run: choco install -y erlang --version 24.0
run: choco install -y erlang --version 27.0
- name: Install rebar3
run: choco install -y rebar3 --version 3.22.1
run: choco install -y rebar3 --version 3.24.0
- name: Compile
run: rebar3 compile
- name: Escriptize LSP Server
run: rebar3 escriptize
- name: Store LSP Server Escript
uses: actions/upload-artifact@v2
with:
name: erlang_ls
path: _build/default/bin/erlang_ls
# - name: Store LSP Server Escript
# uses: actions/upload-artifact@v2
# with:
# name: erlang_ls
# path: _build/default/bin/erlang_ls
- name: Lint
run: rebar3 lint
- name: Generate Dialyzer PLT for usage in CT Tests
Expand All @@ -123,11 +123,11 @@ jobs:
run: erl -sname a -noinput -eval "halt(0)."
- name: Run CT Tests
run: rebar3 ct
- name: Store CT Logs
uses: actions/upload-artifact@v2
with:
name: ct-logs
path: _build/test/logs
# - name: Store CT Logs
# uses: actions/upload-artifact@v2
# with:
# name: ct-logs
# path: _build/test/logs
- name: Run PropEr Tests
run: rebar3 proper --cover --constraint_tries 100
- name: Run Checks
Expand Down

0 comments on commit 5eb88b3

Please sign in to comment.