Skip to content

Commit

Permalink
comment out upload-artifact from workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
plux committed Sep 17, 2024
1 parent 7f6ddbb commit e94c278
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 61 deletions.
58 changes: 29 additions & 29 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ jobs:
run: rebar3 compile
- name: Escriptize LSP Server
run: rebar3 escriptize
- name: Store LSP Server Escript
uses: actions/upload-artifact@v4
with:
name: erlang_ls
path: _build/default/bin/erlang_ls
overwrite: true
# - name: Store LSP Server Escript
# uses: actions/upload-artifact@v4
# with:
# name: erlang_ls
# path: _build/default/bin/erlang_ls
# overwrite: true
- name: Check formatting
run: rebar3 fmt -c
- name: Lint
Expand All @@ -53,12 +53,12 @@ jobs:
run: epmd -daemon
- name: Run CT Tests
run: rebar3 ct
- name: Store CT Logs
uses: actions/upload-artifact@v4
with:
name: ct-logs
path: _build/test/logs
overwrite: true
# - name: Store CT Logs
# uses: actions/upload-artifact@v4
# with:
# name: ct-logs
# path: _build/test/logs
# overwrite: true
- name: Run PropEr Tests
run: rebar3 proper --cover --constraint_tries 100
- name: Run Checks
Expand All @@ -67,17 +67,17 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: rebar3 do cover, coveralls send
- name: Produce Documentation
run: rebar3 edoc
if: ${{ matrix.otp-version == '24' }}
- name: Publish Documentation
uses: actions/upload-artifact@v4
with:
name: edoc
path: |
apps/els_core/doc
apps/els_lsp/doc
overwrite: true
# - name: Produce Documentation
# run: rebar3 edoc
# if: ${{ matrix.otp-version == '24' }}
# - name: Publish Documentation
# uses: actions/upload-artifact@v4
# with:
# name: edoc
# path: |
# apps/els_core/doc
# apps/els_lsp/doc
# overwrite: true
windows:
runs-on: windows-latest
steps:
Expand All @@ -97,12 +97,12 @@ jobs:
run: erl -sname a -noinput -eval "halt(0)."
- name: Run CT Tests
run: rebar3 ct
- name: Store CT Logs
uses: actions/upload-artifact@v4
with:
name: ct-logs
path: _build/test/logs
overwrite: true
# - name: Store CT Logs
# uses: actions/upload-artifact@v4
# with:
# name: ct-logs
# path: _build/test/logs
# overwrite: true
- name: Run PropEr Tests
run: rebar3 proper --cover --constraint_tries 100
- name: Run Checks
Expand Down
64 changes: 32 additions & 32 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ jobs:
run: rebar3 compile
- name: Escriptize LSP Server
run: rebar3 escriptize
- name: Store LSP Server Escript
uses: actions/upload-artifact@v4
with:
name: erlang_ls
path: _build/default/bin/erlang_ls
overwrite: true
# - name: Store LSP Server Escript
# uses: actions/upload-artifact@v4
# with:
# name: erlang_ls
# path: _build/default/bin/erlang_ls
# overwrite: true
- name: Check formatting
run: rebar3 fmt -c
- name: Lint
Expand All @@ -57,12 +57,12 @@ jobs:
run: epmd -daemon
- name: Run CT Tests
run: rebar3 ct
- name: Store CT Logs
uses: actions/upload-artifact@v4
with:
name: ct-logs
path: _build/test/logs
overwrite: true
# - name: Store CT Logs
# uses: actions/upload-artifact@v4
# with:
# name: ct-logs
# path: _build/test/logs
# overwrite: true
- name: Run PropEr Tests
run: rebar3 proper --cover --constraint_tries 100
- name: Run Checks
Expand All @@ -74,14 +74,14 @@ jobs:
- name: Produce Documentation
run: rebar3 edoc
if: ${{ matrix.otp-version == '24' }}
- name: Publish Documentation
uses: actions/upload-artifact@v4
with:
name: edoc
path: |
apps/els_core/doc
apps/els_lsp/doc
overwrite: true
# - name: Publish Documentation
# uses: actions/upload-artifact@v4
# with:
# name: edoc
# path: |
# apps/els_core/doc
# apps/els_lsp/doc
# overwrite: true

# Make release artifacts : erlang_ls
- name: Make erlang_ls-linux.tar.gz
Expand Down Expand Up @@ -113,12 +113,12 @@ jobs:
run: rebar3 compile
- name: Escriptize LSP Server
run: rebar3 escriptize
- name: Store LSP Server Escript
uses: actions/upload-artifact@v4
with:
name: erlang_ls
path: _build/default/bin/erlang_ls
overwrite: true
# - name: Store LSP Server Escript
# uses: actions/upload-artifact@v4
# with:
# name: erlang_ls
# path: _build/default/bin/erlang_ls
# overwrite: true
- name: Lint
run: rebar3 lint
- name: Generate Dialyzer PLT for usage in CT Tests
Expand All @@ -127,12 +127,12 @@ jobs:
run: erl -sname a -noinput -eval "halt(0)."
- name: Run CT Tests
run: rebar3 ct
- name: Store CT Logs
uses: actions/upload-artifact@v4
with:
name: ct-logs
path: _build/test/logs
overwrite: true
# - name: Store CT Logs
# uses: actions/upload-artifact@v4
# with:
# name: ct-logs
# path: _build/test/logs
# overwrite: true
- name: Run PropEr Tests
run: rebar3 proper --cover --constraint_tries 100
- name: Run Checks
Expand Down

0 comments on commit e94c278

Please sign in to comment.