From d76e78719c2aaf4a312220814c1c08dda368aad0 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Wed, 17 Mar 2021 14:22:20 +0200 Subject: [PATCH] ci: separate `v -autofree option_test.v` to its own step --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ae40fca969..7614297a65 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -363,10 +363,10 @@ jobs: run: ./v -cc gcc -cflags "-Werror" test-self - name: Build examples run: ./v build-examples - - name: Build examples/certain tests with -autofree - run: | - ./v -autofree -experimental -o tetris examples/tetris/tetris.v - ./v -autofree vlib/v/tests/option_test.v + - name: Build tetris.v with -autofree + run: ./v -autofree -experimental -o tetris examples/tetris/tetris.v + - name: Build option_test.v with -autofree + run: ./v -autofree vlib/v/tests/option_test.v - name: Build modules run: | ./v build-module vlib/os