Skip to content

Commit 47db743

Browse files
committed
Update gitignore
1 parent 82616ec commit 47db743

File tree

5 files changed

+7
-18
lines changed

5 files changed

+7
-18
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,6 @@ jobs:
9393
shell: bash
9494
run: sudo apt install ${{ matrix.job.apt }}
9595

96-
# - name: Print /lib/riscv64-linux-gnu directory
97-
# shell: bash
98-
# run: ls /lib/riscv64-linux-gnu
99-
10096
- name: Install RISCV build tools
10197
if: ${{ matrix.job.arch == 'riscv64' }}
10298
shell: bash
@@ -107,16 +103,6 @@ jobs:
107103
tar -xvzf ~/Downloads/riscv64-glibc-ubuntu-22.04-gcc-nightly-2023.07.07-nightly.tar.gz -C /opt/
108104
echo PATH="/opt/riscv/bin/:$PATH" >> $GITHUB_ENV
109105
110-
# - name: Install additional apt packages
111-
# if: ${{ matrix.job.apt }}
112-
# uses: awalsh128/cache-apt-pkgs-action@latest
113-
# with:
114-
# packages: ${{ matrix.job.apt }}
115-
# version: 1.0
116-
117-
# - name: Add to the package path
118-
# shell: bash
119-
# run: echo "PKG_CONFIG_PATH=$(find /usr/lib/ -name alsa.pc -print | head -1 | xargs -0 dirname):/usr/lib/pkgconfig:$PKG_CONFIG_PATH" >> $GITHUB_ENV
120106
- name: PKG_CONFIG_PATH package path
121107
if: contains(fromJSON('["macos", "ubuntu"]'), matrix.job.os)
122108
shell: bash

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,7 @@ midiex-*.tar
4949
# Accommodate Nix folks
5050
.nix-mix
5151
.nix-hex
52-
.direnv
52+
.direnv
53+
54+
# Ignore checksum file
55+
checksum-*.exs

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Using WinRT or Jack requires special feature flags enabled. See the [midir GitHu
2222
The hot-plug support of MIDI devices on MacOS is made possible with with the Rust [coremidi](https://github.com/chris-zen/coremidi) library.
2323

2424
## Status
25-
This library is currently under active development and it’s API is likely to change. It's been tested on MacOS only although it is currently building on Mac (M-series and x86), Linux (64-bit ARM, RISC-V and x86) and Windows (x86_64) with precompiled binary packages (see the Getting started section below).
25+
This library is currently under active development and it’s API is likely to change. It's been tested on MacOS only although it is currently building on Mac (M-series and x86), Linux (64-bit ARM, RISC-V and x86) and Windows (x86_64) with precompiled binary packages available (see the Getting started section below).
2626

2727
## API
2828
At it's most basic level, the core functions of Midiex are for:
@@ -92,7 +92,7 @@ Since v0.6, Midiex uses [Rustler Precompiled](https://dashbit.co/blog/rustler-pr
9292
- x86_64-pc-windows-msvc
9393
- x86_64-pc-windows-gnu
9494

95-
This means you shouldn't need the Rust build tools for the above plaforms. Just add midiex as a dependency to your Elixir file and Rustler will download and install the correct binary.
95+
This means you shouldn't need the Rust build tools for the above plaforms. Just add midiex as a dependency to your Elixir project and Rustler will download and install the correct binary.
9696

9797
### Rust build tools
9898
If you want to use Midiex on a different platform than those listed above, or want to force complication, you'll need to have Rust's build tools installed. See [BUILDING.md](BUILDING.md) for more information.

livebook/midiex_notebook.livemd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# MIDIex notebook
44

55
```elixir
6-
Mix.install([{:midiex, github: "haubie/midiex"}])
6+
Mix.install([:midiex])
77
```
88

99
<!-- livebook:{"output":true} -->
Binary file not shown.

0 commit comments

Comments
 (0)