Skip to content

Commit

Permalink
ci: more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
larpon committed Sep 1, 2023
1 parent 2c2e0a3 commit 62a656b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jobs:
repository: vlang/v

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

- name: Install sdl module
run: v install sdl
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
repository: vlang/v

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

- name: Install sdl module
run: v install sdl
Expand Down Expand Up @@ -261,7 +261,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
sdl-version: [2.0.9, 2.0.10, 2.0.12, 2.0.14, 2.0.16, 2.0.18, 2.0.20, 2.0.22, 2.24.0]
sdl-version: [2.0.9, 2.0.10, 2.0.12, 2.0.14, 2.0.16, 2.0.18, 2.0.20, 2.0.22, 2.24.0, 2.26.0, 2.28.0]
timeout-minutes: 20
env:
VFLAGS: -cc tcc -no-retry-compilation
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ci_visual_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@ jobs:
LIBGL_ALWAYS_SOFTWARE: true
SDL2_VERSION: 2.28.2
steps:
- name: Checkout V
uses: actions/checkout@v2
with:
repository: vlang/v

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

- name: Install dependencies
run: |
curl -L https://www.libsdl.org/release/SDL2-${SDL2_VERSION}.tar.gz -o SDL2.tar.gz
Expand Down Expand Up @@ -52,14 +60,6 @@ jobs:
make
sudo make install
- name: Checkout V
uses: actions/checkout@v2
with:
repository: vlang/v

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

- name: Install sdl module
run: |
git clone https://github.com/vlang/sdl.git ~/.vmodules/sdl
Expand Down

0 comments on commit 62a656b

Please sign in to comment.