Skip to content

Commit

Permalink
Fixed linux build.
Browse files Browse the repository at this point in the history
  • Loading branch information
dsrw committed Sep 16, 2023
1 parent 82e7f75 commit bd97b4b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/dist_linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,14 @@ jobs:
- name: Install Nim
run: |
cd $HOME &&
curl -O https://nim-lang.org/download/nim-1.6.12-linux_x64.tar.xz &&
tar xf nim-1.6.12-linux_x64.tar.xz
curl -O https://nim-lang.org/download/nim-1.6.14-linux_x64.tar.xz &&
tar xf nim-1.6.14-linux_x64.tar.xz
- name: Install Nim and build deps
run: sudo apt-get install build-essential scons pkg-config libx11-dev libxcursor-dev libxinerama-dev libgl1-mesa-dev libglu-dev libasound2-dev libpulse-dev libudev-dev libxi-dev libxrandr-dev
run: |
sudo apt-get update
sudo apt-get install build-essential scons pkg-config libx11-dev libxcursor-dev libxinerama-dev libgl1-mesa-dev libglu-dev libasound2-dev libpulse-dev libudev-dev libxi-dev libxrandr-dev
- name: Update path
run: echo "$HOME/.nimble/bin:$HOME/nim-1.6.12/bin" >> $GITHUB_PATH
run: echo "$HOME/.nimble/bin:$HOME/nim-1.6.14/bin" >> $GITHUB_PATH
- name: Install Nimble 0.14.2
run: nimble install -y [email protected]
- name: Install nimble deps
Expand Down

0 comments on commit bd97b4b

Please sign in to comment.