Skip to content

Commit

Permalink
fix line endings
Browse files Browse the repository at this point in the history
  • Loading branch information
glowcoil committed Jun 10, 2023
1 parent f17c2bc commit fea471c
Show file tree
Hide file tree
Showing 9 changed files with 334 additions and 334 deletions.
96 changes: 48 additions & 48 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
name: CI

on:
push:
branches:
master
pull_request:
branches:
master

env:
VST3_SDK_DIR: vst3sdk

jobs:
ci:
name: Build and run tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Check out VST3 SDK
uses: actions/checkout@v3
with:
repository: coupler-rs/vst3_pluginterfaces
path: vst3sdk/pluginterfaces
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install libclang (Linux)
if: contains(matrix.os, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install llvm-dev libclang-dev clang
- name: Install libclang (Windows)
if: contains(matrix.os, 'windows')
run: |
choco install llvm
- name: Install libclang (macOS)
if: contains(matrix.os, 'macOS')
run: |
brew install llvm
echo "LIBCLANG_PATH=/usr/local/opt/llvm/lib/libclang.dylib" >> $GITHUB_ENV
- name: Build
run: cargo build --workspace --examples
- name: Run tests
run: cargo test --workspace
name: CI

on:
push:
branches:
master
pull_request:
branches:
master

env:
VST3_SDK_DIR: vst3sdk

jobs:
ci:
name: Build and run tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Check out VST3 SDK
uses: actions/checkout@v3
with:
repository: coupler-rs/vst3_pluginterfaces
path: vst3sdk/pluginterfaces
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install libclang (Linux)
if: contains(matrix.os, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install llvm-dev libclang-dev clang
- name: Install libclang (Windows)
if: contains(matrix.os, 'windows')
run: |
choco install llvm
- name: Install libclang (macOS)
if: contains(matrix.os, 'macOS')
run: |
brew install llvm
echo "LIBCLANG_PATH=/usr/local/opt/llvm/lib/libclang.dylib" >> $GITHUB_ENV
- name: Build
run: cargo build --workspace --examples
- name: Run tests
run: cargo test --workspace
76 changes: 38 additions & 38 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
name: Docs

on:
push:
branches:
master

env:
VST3_SDK_DIR: vst3sdk

jobs:
docs:
name: Generate and publish documentation
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Check out VST3 SDK
uses: actions/checkout@v3
with:
repository: coupler-rs/vst3_pluginterfaces
path: vst3sdk/pluginterfaces
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install libclang
run: |
sudo apt-get update
sudo apt-get install llvm-dev libclang-dev clang
- name: Generate documentation
run: cargo doc --no-deps
- name: Add index.html
run: |
echo '<meta charset="utf-8"><meta http-equiv="refresh" content="0; url=vst3_bindgen">' > target/doc/index.html
- name: Publish documentation
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: target/doc
name: Docs

on:
push:
branches:
master

env:
VST3_SDK_DIR: vst3sdk

jobs:
docs:
name: Generate and publish documentation
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Check out VST3 SDK
uses: actions/checkout@v3
with:
repository: coupler-rs/vst3_pluginterfaces
path: vst3sdk/pluginterfaces
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install libclang
run: |
sudo apt-get update
sudo apt-get install llvm-dev libclang-dev clang
- name: Generate documentation
run: cargo doc --no-deps
- name: Add index.html
run: |
echo '<meta charset="utf-8"><meta http-equiv="refresh" content="0; url=vst3_bindgen">' > target/doc/index.html
- name: Publish documentation
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: target/doc
Loading

0 comments on commit fea471c

Please sign in to comment.