We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6276e47 commit 0b59db8Copy full SHA for 0b59db8
.github/workflows/build.yml
@@ -14,11 +14,18 @@ jobs:
14
path: ~/.choosenim
15
key: ${{ runner.os }}-choosenim-stable
16
17
+ - name: Cache nimble
18
+ id: cache-nimble
19
+ uses: actions/cache@v1
20
+ with:
21
+ path: ~/.nimble
22
+ key: ${{ runner.os }}-nimble-stable
23
+
24
- uses: jiro4989/setup-nim-action@v1
25
26
- name: Install GUI
27
run: |
28
sudo apt update
29
sudo apt install -y build-essential libalut-dev libasound2-dev libc6-dev libgl1-mesa-dev libglu1-mesa-dev libxcursor-dev libxi-dev libxinerama-dev libxrandr-dev libxxf86vm-dev mesa-utils pkg-config xorg-dev xvfb
- - run: nimble install -y --verbose
30
+ - run: nimble install -y
31
- run: nim c -r tests/run.nim --compile --native --js
0 commit comments