From 6e0b40af3da4941b618f018b2c04cee0110ce50c Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Mon, 28 Oct 2019 18:31:00 +0900 Subject: Try out-of-place build --- .github/workflows/macos.yml | 30 +++++++++++++++++++++--------- .github/workflows/ubuntu.yml | 25 +++++++++++++++++-------- .github/workflows/windows.yml | 16 ++++++++++------ 3 files changed, 48 insertions(+), 23 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index f95860783f..941abd5dd9 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -21,10 +21,14 @@ jobs: sudo /usr/libexec/ApplicationFirewall/socketfilterfw --getglobalstate # Not using official actions/checkout because it's unstable and sometimes doesn't work for a fork. - name: Checkout ruby/ruby - run: git clone --depth=50 https://github.com/ruby/ruby . && git reset --hard "$GITHUB_SHA" + run: | + git clone --depth=50 https://github.com/ruby/ruby src + git -C src reset --hard "$GITHUB_SHA" if: github.event_name == 'push' - name: Checkout a pull request - run: git clone --depth=50 "--branch=$GITHUB_BRANCH" "https://github.com/${GITHUB_REPO}" . && git reset --hard "$GITHUB_REV" + run: | + git clone --depth=50 "--branch=$GITHUB_BRANCH" "https://github.com/${GITHUB_REPO}" src + git -C src reset --hard "$GITHUB_REV" env: GITHUB_REV: ${{ github.event.pull_request.head.sha }} GITHUB_BRANCH: ${{ github.event.pull_request.head.ref }} @@ -33,28 +37,36 @@ jobs: - name: Install libraries run: | export WAITS='5 60' + cd src tool/travis_retry.sh brew update tool/travis_retry.sh brew install gdbm gmp libffi openssl@1.1 zlib autoconf automake libtool readline - name: Set ENV run: | echo '##[set-env name=JOBS]'-j$((1 + $(sysctl -n hw.activecpu))) - - run: autoconf - - name: configure - run: ./configure -C --disable-install-doc --with-openssl-dir=$(brew --prefix openssl@1.1) --with-readline-dir=$(brew --prefix readline) - - run: make $JOBS + - name: Autoconf + run: | + cd src + autoconf + - name: Configure + run: | + mkdir build + cd build + ../src/configure -C --disable-install-doc --with-openssl-dir=$(brew --prefix openssl@1.1) --with-readline-dir=$(brew --prefix readline) + - name: Make + run: make -C build $JOBS - name: Tests - run: make -s ${{ matrix.test_task }} TESTOPTS="$JOBS -q --tty=no" + run: make -C build -s ${{ matrix.test_task }} TESTOPTS="$JOBS -q --tty=no" env: MSPECOPT: "-ff" # not using `-j` because sometimes `mspec -j` silently dies if: matrix.test_task != 'test-bundled-gems' - name: Tests (test-bundled-gems) # Remove minitest from TEST_BUNDLED_GEMS_ALLOW_FAILURES if https://github.com/seattlerb/minitest/pull/798 is resolved - run: make -s ${{ matrix.test_task }} TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest + run: make -C build -s ${{ matrix.test_task }} TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest env: RUBY_TESTOPTS: "-q --tty=no" if: matrix.test_task == 'test-bundled-gems' - name: Leaked Globals - run: make -s leaked-globals + run: make -C build -s leaked-globals - uses: k0kubun/action-slack@v2.0.0 with: payload: | diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index f9e5b9773c..258de091e8 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -49,10 +49,14 @@ jobs: sudo apt-get install --no-install-recommends -q -y build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm-dev bison autoconf ruby # Not using official actions/checkout because it's unstable and sometimes doesn't work for a fork. - name: Checkout ruby/ruby - run: git clone --depth=50 https://github.com/ruby/ruby . && git reset --hard "$GITHUB_SHA" + run: | + git clone --depth=50 https://github.com/ruby/ruby src + git -C src reset --hard "$GITHUB_SHA" if: github.event_name == 'push' - name: Checkout a pull request - run: git clone --depth=50 "--branch=$GITHUB_BRANCH" "https://github.com/${GITHUB_REPO}" . && git reset --hard "$GITHUB_REV" + run: | + git clone --depth=50 "--branch=$GITHUB_BRANCH" "https://github.com/${GITHUB_REPO}" src + git -C src reset --hard "$GITHUB_REV" env: GITHUB_REV: ${{ github.event.pull_request.head.sha }} GITHUB_BRANCH: ${{ github.event.pull_request.head.ref }} @@ -65,23 +69,28 @@ jobs: - name: Set ENV run: | echo '##[set-env name=JOBS]'-j$((1 + $(nproc --all))) - - run: autoconf + - name: Autoconf + run: cd src && exec autoconf - name: configure - run: ./configure -C --disable-install-doc - - run: make $JOBS + run: | + mkdir build + cd build + ../src/configure -C --disable-install-doc + - name: Make + run: make -C build $JOBS - name: Tests - run: make -s ${{ matrix.test_task }} TESTOPTS="$JOBS -q --tty=no" + run: make -C build -s ${{ matrix.test_task }} TESTOPTS="$JOBS -q --tty=no" env: MSPECOPT: "-ff" # not using `-j` because sometimes `mspec -j` silently dies if: matrix.test_task != 'test-bundled-gems' - name: Tests (test-bundled-gems) # Remove minitest from TEST_BUNDLED_GEMS_ALLOW_FAILURES if https://github.com/seattlerb/minitest/pull/798 is resolved - run: make -s ${{ matrix.test_task }} TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest + run: make -C build -s ${{ matrix.test_task }} TEST_BUNDLED_GEMS_ALLOW_FAILURES=minitest env: RUBY_TESTOPTS: "-q --tty=no" if: matrix.test_task == 'test-bundled-gems' - name: Leaked Globals - run: make -s leaked-globals + run: make -C build -s leaked-globals - name: Debug GitHub context run: echo "$GITHUB_CONTEXT" env: diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 6dee27ed6a..f0e65d0f4e 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -31,29 +31,33 @@ jobs: # Not using official actions/checkout because it's unstable and sometimes doesn't work for a fork. - name: Checkout ruby/ruby run: | - git clone --depth=50 https://github.com/ruby/ruby . - git reset --hard ${{ github.sha }} + git clone --depth=50 https://github.com/ruby/ruby src + git -C src reset --hard ${{ github.sha }} if: github.event_name == 'push' - name: Checkout a pull request run: | - git clone --depth=50 --branch=${{ github.event.pull_request.head.ref }} https://github.com/${{ github.event.pull_request.head.repo.full_name }} . - git reset --hard ${{ github.event.pull_request.head.sha }} + git clone --depth=50 --branch=${{ github.event.pull_request.head.ref }} https://github.com/${{ github.event.pull_request.head.repo.full_name }} src + git -C src reset --hard ${{ github.event.pull_request.head.sha }} if: github.event_name == 'pull_request' - - name: configure + - name: Configure run: | + md build + cd build call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat" - win32/configure.bat --disable-install-doc --without-ext=+,dbm,gdbm --enable-bundled-libffi --with-opt-dir=C:/vcpkg/installed/x64-windows + ../src/win32/configure.bat --disable-install-doc --without-ext=+,dbm,gdbm --enable-bundled-libffi --with-opt-dir=C:/vcpkg/installed/x64-windows shell: cmd - name: nmake run: | call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat" set YACC=win_bison + cd build nmake up nmake shell: cmd - name: nmake test run: | call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat" + cd build nmake ${{ matrix.test_task }} shell: cmd - uses: k0kubun/action-slack@v2.0.0 -- cgit v1.2.3