v0.9.6: now with fixed CI

This commit is contained in:
Noah Santschi-Cooney 2022-04-23 23:15:45 +01:00
parent a7cbaa198b
commit d43bfec582
No known key found for this signature in database
GPG key ID: 3B22282472C8AE48
3 changed files with 6 additions and 6 deletions

View file

@ -34,20 +34,20 @@ jobs:
platforms:
- os: ubuntu-18.04
target: x86_64-unknown-linux-gnu
artifact: x86_64-unknown-linux-gnu
dir: server/mcshader-lsp
artifact: x86_64-unknown-linux-gnu
- os: windows-latest
target: x86_64-pc-windows-msvc
artifact: x86_64-windows-msvc.exe
dir: server/mcshader-lsp.exe
artifact: x86_64-windows-msvc.exe
- os: macos-11
target: x86_64-apple-darwin
artifact: x86_64-apple-darwin
dir: server/mcshader-lsp
artifact: x86_64-apple-darwin
- os: macos-11
target: aarch64-apple-darwin
artifact: aarch64-apple-darwin
dir: server/mcshader-lsp
artifact: aarch64-apple-darwin
steps:
- uses: actions/checkout@v2
- name: Install latest nightly
@ -55,6 +55,8 @@ jobs:
with:
toolchain: nightly
default: true
target: ${{ matrix.platforms.target }}
override: true
- name: Build server
run: cargo build --release --target ${{ matrix.platforms.target }} --out-dir . -Z unstable-options
- name: Upload release file

View file

@ -48,4 +48,3 @@ jobs:
path: ${{ matrix.platforms.dir }}
- name: Run tests
run: cargo test --target ${{ matrix.platforms.target }}
if: ${{ matrix.platforms.target != 'aarch64-apple-darwin' }}

View file

@ -16,7 +16,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
- Another `#include` merging bug when a file is imported twice into another file at different lines
## [0.9.5]
### Added