Skip to content

Commit

Permalink
chore: update eyelink installation instructions
Browse files Browse the repository at this point in the history
Note that the instructions require making an account on their forum
to view.

Ref: https://www.sr-research.com/support/docs.php?topic=linuxsoftware
  • Loading branch information
lukehsiao committed Jun 21, 2023
1 parent e424e63 commit 9b96352
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 16 deletions.
32 changes: 18 additions & 14 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,16 @@ jobs:
name: Test Suite
runs-on: ubuntu-latest
steps:
- id: deps
- name: Install system deps
run: sudo apt-get update && sudo apt-get install libx264-dev ffmpeg libavutil-dev libavformat-dev libavfilter-dev libavdevice-dev llvm-dev libudev-dev
- id: eyelink1
run: wget -O - "http://download.sr-support.com/software/dists/SRResearch/SRResearch_key" | sudo apt-key add -
- id: eyelink2
run: sudo add-apt-repository "deb http://download.sr-support.com/software SRResearch main" && sudo apt-get update
- id: eyelink3
run: sudo apt-get update && sudo apt-get install eyelink-display-software
- name: Enable universe
run: sudo add-apt-repository universe && sudo apt-get update && sudo apt-get install ca-certificates
- name: Install eyelink signing key
run: sudo apt-key adv --fetch-keys https://apt.sr-research.com/SRResearch_key
- name: Add SRResearch apt repository
run: sudo add-apt-repository 'deb [arch=amd64] https://apt.sr-research.com SRResearch main' && sudo apt-get update
- name: Install eyelink SDK
run: sudo apt-get install eyelink-display-software
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
Expand All @@ -37,14 +39,16 @@ jobs:
name: Clippy
runs-on: ubuntu-latest
steps:
- id: deps
- name: Install system deps
run: sudo apt-get update && sudo apt-get install libx264-dev ffmpeg libavutil-dev libavformat-dev libavfilter-dev libavdevice-dev llvm-dev libudev-dev
- id: eyelink1
run: wget -O - "http://download.sr-support.com/software/dists/SRResearch/SRResearch_key" | sudo apt-key add -
- id: eyelink2
run: sudo add-apt-repository "deb http://download.sr-support.com/software SRResearch main" && sudo apt-get update
- id: eyelink3
run: sudo apt-get update && sudo apt-get install eyelink-display-software
- name: Enable universe
run: sudo add-apt-repository universe && sudo apt-get update && sudo apt-get install ca-certificates
- name: Install eyelink signing key
run: sudo apt-key adv --fetch-keys https://apt.sr-research.com/SRResearch_key
- name: Add SRResearch apt repository
run: sudo add-apt-repository 'deb [arch=amd64] https://apt.sr-research.com SRResearch main' && sudo apt-get update
- name: Install eyelink SDK
run: sudo apt-get install eyelink-display-software
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,11 @@ sudo add-apt-repository ppa:jonathonf/ffmpeg-4
Next, you must install Eyelink's libraries.

```
wget -O - "http://download.sr-support.com/software/dists/SRResearch/SRResearch_key" | sudo apt-key add -
sudo add-apt-repository "deb http://download.sr-support.com/software SRResearch main"
sudo add-apt-repository universe
sudo apt update
sudo apt install ca-certificates
sudo apt-key adv --fetch-keys https://apt.sr-research.com/SRResearch_key
sudo add-apt-repository 'deb [arch=amd64] https://apt.sr-research.com SRResearch main'
sudo apt update
sudo apt install eyelink-display-software
```
Expand Down

0 comments on commit 9b96352

Please sign in to comment.