aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorGiles Cope <[email protected]>2020-01-09 19:36:12 +0000
committerGiles Cope <[email protected]>2020-01-09 19:36:12 +0000
commit3422bf1d29e83ae6f813cda65f835a861fb3807e (patch)
tree4c2498b1ed6c5359049489c50df0d5306ced1510 /.github/workflows
parentf562a1fc9f41ca162cf9253c2845204c8d9a0cee (diff)
parameterised debug
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yaml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index e1a4800db..793fb428a 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -20,6 +20,7 @@ jobs:
20 RUN_SLOW_TESTS: 1 20 RUN_SLOW_TESTS: 1
21 RUSTUP_MAX_RETRIES: 10 21 RUSTUP_MAX_RETRIES: 10
22 CARGO_NET_RETRY: 10 22 CARGO_NET_RETRY: 10
23 PROFILE: debug
23 steps: 24 steps:
24 25
25 - name: Checkout repository 26 - name: Checkout repository
@@ -75,18 +76,18 @@ jobs:
75 76
76 - name: Prepare cache 2 77 - name: Prepare cache 2
77 if: matrix.os == 'windows-latest' 78 if: matrix.os == 'windows-latest'
78 run: Remove-Item ./target/debug/xtask.exe 79 run: Remove-Item ./target/${{ env.PROFILE }}/xtask.exe
79 80
80 - name: Creat distribution dir 81 - name: Creat distribution dir
81 run: mkdir ./dist 82 run: mkdir ./dist
82 83
83 - name: Copy binaries (non-win) 84 - name: Copy binaries (non-win)
84 if: matrix.os != 'windows-latest' 85 if: matrix.os != 'windows-latest'
85 run: cp ./target/debug/ra-lsp-server.* ./dist 86 run: cp ./target/${{ env.PROFILE }}/ra_lsp_server.* ./dist
86 87
87 - name: Copy binaries (win) 88 - name: Copy binaries (win)
88 if: matrix.os == 'windows-latest' 89 if: matrix.os == 'windows-latest'
89 run: copy ./target/debug/ra-lsp-server.* ./dist 90 run: copy ./target/${{ env.PROFILE }}/ra_lsp_server.* ./dist
90 91
91 - name: Upload artifacts 92 - name: Upload artifacts
92 uses: actions/upload-artifact@v1 93 uses: actions/upload-artifact@v1