Skip to content

Commit

Permalink
ci: fix extra step
Browse files Browse the repository at this point in the history
  • Loading branch information
larpon committed Oct 9, 2024
1 parent 11a80f1 commit 29aeea5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,12 +190,6 @@ jobs:
VFLAGS: -d vab_allow_extra_commands
VAB_FLAGS: -v 3
steps:
- name: Install dependencies
run: |
v retry -- sudo apt-get update
v retry -- sudo apt-get install --quiet -y libsdl2-dev libsdl2-ttf-dev
v retry -- sudo apt-get install --quiet -y libsdl2-mixer-dev libsdl2-image-dev
- name: Checkout V
uses: actions/checkout@v4
with:
Expand All @@ -204,6 +198,12 @@ jobs:
- name: Build local v
run: make -j4 && sudo ./v symlink

- name: Install dependencies
run: |
v retry -- sudo apt-get update
v retry -- sudo apt-get install --quiet -y libsdl2-dev libsdl2-ttf-dev
v retry -- sudo apt-get install --quiet -y libsdl2-mixer-dev libsdl2-image-dev
- name: Checkout vab
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 29aeea5

Please sign in to comment.