Skip to content

Commit

Permalink
Add a system_clipboard option
Browse files Browse the repository at this point in the history
* adds copypasta_ext dependency
  • Loading branch information
ChristopheVerbinnen committed Jan 12, 2022
1 parent e06300f commit a3655a7
Show file tree
Hide file tree
Showing 13 changed files with 393 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ jobs:
run: rustup target add wasm32-wasi
- name: Install musl-tools
run: sudo apt-get install -y --no-install-recommends musl-tools
- name: Install required xcb dependencies
run: sudo apt-get install -y --no-install-recommends libxcb-xfixes0-dev libxcb-shape0-dev
- name: Add musl target
run: rustup target add x86_64-unknown-linux-musl
- name: Install cargo-make
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ jobs:
- name: Install musl-tools
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install -y --no-install-recommends musl-tools

- name: Install required xcb dependencies
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install -y --no-install-recommends libxcb-xfixes0-dev libxcb-shape0-dev

- name: Install wasm-opt
run: brew install binaryen
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Add WASM target
run: rustup target add wasm32-wasi
- name: Install required xcb dependencies
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install -y --no-install-recommends libxcb-xfixes0-dev libxcb-shape0-dev
- name: Install cargo-make
run: test -x "${HOME}/.cargo/bin/cargo-make" || cargo install --debug cargo-make
- name: Build
Expand Down
Loading

0 comments on commit a3655a7

Please sign in to comment.