From ed877e5ec8fb054e8dc9eebcebf9aa2134895d14 Mon Sep 17 00:00:00 2001 From: anton Date: Sun, 16 Jun 2024 19:12:57 +0400 Subject: [PATCH] try fix --- .github/workflows/push-main.yml | 34 ++++----------------------------- 1 file changed, 4 insertions(+), 30 deletions(-) diff --git a/.github/workflows/push-main.yml b/.github/workflows/push-main.yml index e21e4983e..3922c0ad9 100644 --- a/.github/workflows/push-main.yml +++ b/.github/workflows/push-main.yml @@ -7,45 +7,19 @@ jobs: gradle-build: strategy: matrix: - os: [ ubuntu-latest, macos-11, windows-latest ] + os: [ ubuntu-latest ] jdk: [ 21 ] - tarantool: [ 2.11 ] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - - if: runner.os == 'Windows' - uses: Vampire/setup-wsl@v1 - with: - distribution: Debian - additional-packages: - aptitude - sudo - - - if: runner.os == 'macOS' - name: Initialize the tarantool on OSX - run: brew install tarantool - - - if: runner.os == 'Windows' - name: Initialize the tarantool on WSL - run: | - wsl bash -c "sudo apt-get -y install curl" - wsl bash -c "curl -L https://tarantool.io/KKkJBXq/release/${{ matrix.tarantool }}/installer.sh | bash" - wsl bash -c "sudo apt-get -y install tarantool" - - - if: runner.os == 'Linux' - uses: tarantool/setup-tarantool@v1 + - uses: tarantool/setup-tarantool@v1 with: - tarantool-version: '${{ matrix.tarantool }}' + tarantool-version: '2.11' - - if: runner.os == 'macOS' || runner.os == 'Linux' - name: Setup temporary directory on Unix based + - name: Setup temporary directory on Unix based run: echo "TMPDIR=${{ runner.temp }}" >> $GITHUB_ENV - - if: runner.os == 'Windows' - name: Setup temporary directory on WSL - run: wsl bash -c \"echo "TMPDIR=${{ runner.temp }}" >> $GITHUB_ENV\" - - uses: actions/setup-java@v1 with: java-version: ${{ matrix.jdk }}