Skip to content

Commit

Permalink
ci: simplify build V tasks in .yml files
Browse files Browse the repository at this point in the history
  • Loading branch information
spytheman committed Nov 16, 2024
1 parent 0595606 commit d65ed81
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
repository: vlang/v

- name: Build local v
run: make -j4 && sudo ./v symlink
run: make && ./v symlink

- name: Checkout shy
uses: actions/checkout@v4
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
repository: vlang/v

- name: Build local v
run: make -j4 && sudo ./v symlink
run: make && ./v symlink

- name: Install vlang/sdl @ ${{ env.SDL2_VERSION }}
uses: actions/checkout@v4
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
repository: vlang/v

- name: Build local v
run: make && sudo ./v symlink
run: make && ./v symlink

- name: Install vlang/sdl @ ${{ env.SDL2_VERSION }}
uses: actions/checkout@v4
Expand Down Expand Up @@ -232,7 +232,7 @@ jobs:
repository: vlang/v

- name: Build local v
run: make && sudo ./v symlink
run: make && ./v symlink

- name: Install vlang/sdl @ ${{ env.SDL2_VERSION }}
uses: actions/checkout@v4
Expand Down Expand Up @@ -304,7 +304,7 @@ jobs:
repository: vlang/v

- name: Build local v
run: make && sudo ./v symlink
run: make && ./v symlink

- name: Checkout SDL ${{ matrix.sdl-version }}
uses: actions/checkout@v4
Expand Down Expand Up @@ -376,7 +376,7 @@ jobs:
repository: vlang/v

- name: Build local v
run: make && sudo ./v symlink
run: make && ./v symlink

- name: Checkout SDL ${{ matrix.sdl-version }}
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
repository: vlang/v

- name: Build local v
run: make -j4 && sudo ./v symlink
run: make && ./v symlink

- name: Checkout shy
uses: actions/checkout@v4
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
repository: vlang/v

- name: Build local v
run: make -j4 && sudo ./v symlink
run: make && ./v symlink

- name: Checkout shy
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_visual_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
repository: vlang/v

- name: Build local v
run: make && sudo ./v symlink
run: make && ./v symlink

- name: Install dependencies
run: |
Expand Down

0 comments on commit d65ed81

Please sign in to comment.