From 96941c32299446565fc7e9a524e69592af1c5efd Mon Sep 17 00:00:00 2001 From: Stan Lo Date: Tue, 7 Jan 2025 01:03:00 +0800 Subject: [PATCH] Simplify vterm-yamatanooroti's steps (#1060) --- .github/workflows/test.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 95b4f46d3..adcc536c7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -81,14 +81,10 @@ jobs: fail-fast: false env: WITH_LATEST_RELINE: ${{matrix.with_latest_reline}} + WITH_VTERM: 1 timeout-minutes: 30 steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 - - name: Set up Ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: ${{ matrix.ruby }} - bundler-cache: true - name: Install libvterm run: | sudo apt install -y libtool-bin @@ -98,8 +94,10 @@ jobs: sed -i -e 's/^PREFIX=.*$/PREFIX=\/usr/g' Makefile make sudo make install - - name: Install dependencies - run: | - WITH_VTERM=1 bundle install + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{ matrix.ruby }} + bundler-cache: true - name: rake test_yamatanooroti - run: WITH_VTERM=1 bundle exec rake test_yamatanooroti + run: bundle exec rake test_yamatanooroti