mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Try out-of-place build
This commit is contained in:
parent
48f982aba7
commit
6e0b40af3d
Notes:
git
2019-10-28 22:06:24 +09:00
3 changed files with 48 additions and 23 deletions
30
.github/workflows/macos.yml
vendored
30
.github/workflows/macos.yml
vendored
|
@ -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: |
|
||||
|
|
25
.github/workflows/ubuntu.yml
vendored
25
.github/workflows/ubuntu.yml
vendored
|
@ -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:
|
||||
|
|
16
.github/workflows/windows.yml
vendored
16
.github/workflows/windows.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue