Skip to content

Commit d43bfec

Browse files
committed
v0.9.6: now with fixed CI
1 parent a7cbaa1 commit d43bfec

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/release.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -34,27 +34,29 @@ jobs:
3434
platforms:
3535
- os: ubuntu-18.04
3636
target: x86_64-unknown-linux-gnu
37-
artifact: x86_64-unknown-linux-gnu
3837
dir: server/mcshader-lsp
38+
artifact: x86_64-unknown-linux-gnu
3939
- os: windows-latest
4040
target: x86_64-pc-windows-msvc
41-
artifact: x86_64-windows-msvc.exe
4241
dir: server/mcshader-lsp.exe
42+
artifact: x86_64-windows-msvc.exe
4343
- os: macos-11
4444
target: x86_64-apple-darwin
45-
artifact: x86_64-apple-darwin
4645
dir: server/mcshader-lsp
46+
artifact: x86_64-apple-darwin
4747
- os: macos-11
4848
target: aarch64-apple-darwin
49-
artifact: aarch64-apple-darwin
5049
dir: server/mcshader-lsp
50+
artifact: aarch64-apple-darwin
5151
steps:
5252
- uses: actions/checkout@v2
5353
- name: Install latest nightly
5454
uses: actions-rs/toolchain@v1
5555
with:
5656
toolchain: nightly
5757
default: true
58+
target: ${{ matrix.platforms.target }}
59+
override: true
5860
- name: Build server
5961
run: cargo build --release --target ${{ matrix.platforms.target }} --out-dir . -Z unstable-options
6062
- name: Upload release file

.github/workflows/server.yml

-1
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,3 @@ jobs:
4848
path: ${{ matrix.platforms.dir }}
4949
- name: Run tests
5050
run: cargo test --target ${{ matrix.platforms.target }}
51-
if: ${{ matrix.platforms.target != 'aarch64-apple-darwin' }}

CHANGELOG.md

-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
1616

1717
- Another `#include` merging bug when a file is imported twice into another file at different lines
1818

19-
2019
## [0.9.5]
2120

2221
### Added

0 commit comments

Comments
 (0)