File tree 2 files changed +9
-4
lines changed
2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -50,13 +50,16 @@ jobs:
50
50
- name : package-unix
51
51
if : ${{ matrix.os != 'windows-latest' }}
52
52
run : |
53
+ mkdir -p ${{ github.workspace }}/artifact
53
54
cp ${{ github.workspace }}/target/${{ matrix.target }}/release/lua-language-server ${{ github.workspace }}/artifact/
54
55
cp ${{ github.workspace }}/resources ${{ github.workspace }}/artifact/ -r
55
56
- name : package-windows
56
57
if : ${{ matrix.os == 'windows-latest' }}
57
58
run : |
58
- powershell -Command "Copy-Item -Path ${{ github.workspace }}\target\${{ matrix.target }}\release\lua-language-server.exe -Destination ${{ github.workspace }}\artifact\"
59
- powershell -Command "Copy-Item -Path ${{ github.workspace }}\resources -Destination ${{ github.workspace }}\artifact\ -Recurse"
59
+ New-Item -ItemType Directory -Path "${{ github.workspace }}/artifact"
60
+ Copy-Item -Path ${{ github.workspace }}\target\${{ matrix.target }}\release\lua-language-server.exe -Destination ${{ github.workspace }}\artifact\
61
+ Copy-Item -Path ${{ github.workspace }}\resources -Destination ${{ github.workspace }}\artifact\ -Recurse
62
+ shell : pwsh
60
63
- name : Upload
61
64
uses : actions/upload-artifact@v3
62
65
with :
Original file line number Diff line number Diff line change @@ -6,13 +6,15 @@ This project is currently a work in progress. It is an exploration of using Rust
6
6
7
7
- [x] win32-x64
8
8
- [x] win32-ia32
9
- - [ ] linux-aarch64
9
+ - [x ] linux-aarch64 not format
10
10
- [x] linux-x64
11
11
- [x] linux-musl
12
- - [ ] linux-bsd
12
+ - [x ] linux-bsd not format
13
13
- [x] darwin-x64
14
14
- [x] darwin-arm64
15
15
16
+ NOTE: The linux-aarch64 and linux-bsd are not format, because there are some build problems.
17
+
16
18
# Build
17
19
18
20
Rust version: 1.81.0
You can’t perform that action at this time.
0 commit comments