mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Just update sources in CI without fetching
Also install external libraries only, extract-gems does not work unless base ruby is available.
This commit is contained in:
parent
b52862d35f
commit
466d3e68da
8 changed files with 32 additions and 10 deletions
8
.github/workflows/compilers.yml
vendored
8
.github/workflows/compilers.yml
vendored
|
@ -164,15 +164,15 @@ jobs:
|
|||
${default_configure} \
|
||||
${append_configure} \
|
||||
--with-gcc="${default_cc} ${append_cc}"
|
||||
- run: $make incs
|
||||
- name: Update include files
|
||||
run: |
|
||||
$make touch-unicode-files
|
||||
$make $UPDATE_UNICODE -o update-src incs
|
||||
working-directory: build
|
||||
- run: $make
|
||||
working-directory: build
|
||||
- run: $make test
|
||||
working-directory: build
|
||||
- run: $make $UPDATE_UNICODE up
|
||||
working-directory: build
|
||||
if: "matrix.entry.name == '-O3'"
|
||||
- run: $make install
|
||||
working-directory: build
|
||||
if: "matrix.entry.name == '-O3'"
|
||||
|
|
5
.github/workflows/macos.yml
vendored
5
.github/workflows/macos.yml
vendored
|
@ -38,6 +38,11 @@ jobs:
|
|||
- name: Run configure
|
||||
run: ../src/configure -C --disable-install-doc --with-openssl-dir=$(brew --prefix openssl@1.1) --with-readline-dir=$(brew --prefix readline)
|
||||
working-directory: build
|
||||
- name: Update
|
||||
run: |
|
||||
make touch-unicode-files
|
||||
make -o update-src up
|
||||
working-directory: build
|
||||
- run: make $JOBS
|
||||
working-directory: build
|
||||
- run: make prepare-gems
|
||||
|
|
9
.github/workflows/mingw.yml
vendored
9
.github/workflows/mingw.yml
vendored
|
@ -72,11 +72,16 @@ jobs:
|
|||
# Write-Host "-------------------------------------- config.log"
|
||||
# Get-Content ./config.log | foreach {Write-Output $_}
|
||||
|
||||
- name: download unicode, gems, etc
|
||||
- name: update
|
||||
working-directory: build
|
||||
run: |
|
||||
$jobs = [int](2 * $env:NUMBER_OF_PROCESSORS)
|
||||
make -j $jobs incs
|
||||
|
||||
- name: download gems
|
||||
working-directory: build
|
||||
run: |
|
||||
$jobs = [int](2 * $env:NUMBER_OF_PROCESSORS)
|
||||
make -j $jobs update-unicode
|
||||
make -j $jobs update-gems
|
||||
|
||||
- name: make all
|
||||
|
|
5
.github/workflows/mjit.yml
vendored
5
.github/workflows/mjit.yml
vendored
|
@ -41,6 +41,11 @@ jobs:
|
|||
- name: Run configure
|
||||
run: ../src/configure -C --disable-install-doc
|
||||
working-directory: build
|
||||
- name: Update include files
|
||||
run: |
|
||||
make touch-unicode-files
|
||||
make $JOBS -o update-src incs
|
||||
working-directory: build
|
||||
- run: make $JOBS
|
||||
working-directory: build
|
||||
- run: sudo make $JOBS -s install
|
||||
|
|
5
.github/workflows/ubuntu.yml
vendored
5
.github/workflows/ubuntu.yml
vendored
|
@ -55,6 +55,11 @@ jobs:
|
|||
- name: Run configure
|
||||
run: ../src/configure -C --disable-install-doc cppflags=${{ matrix.debug }}
|
||||
working-directory: build
|
||||
- name: Update include files
|
||||
run: |
|
||||
make $JOBS touch-unicode-files
|
||||
make $JOBS -o update-src up
|
||||
working-directory: build
|
||||
- run: make $JOBS
|
||||
working-directory: build
|
||||
- run: make prepare-gems
|
||||
|
|
5
.github/workflows/windows.yml
vendored
5
.github/workflows/windows.yml
vendored
|
@ -55,8 +55,9 @@ jobs:
|
|||
call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
|
||||
set YACC=win_bison
|
||||
echo on
|
||||
nmake up
|
||||
nmake extract-gems
|
||||
nmake touch-unicode-files
|
||||
nmake incs
|
||||
nmake extract-extlibs
|
||||
nmake
|
||||
working-directory: build
|
||||
shell: cmd
|
||||
|
|
|
@ -410,7 +410,7 @@ env:
|
|||
- "> .rbconfig.time"
|
||||
- sed -f tool/prereq.status template/Makefile.in common.mk > Makefile
|
||||
- make touch-unicode-files
|
||||
- make -s $JOBS $UPDATE_UNICODE up
|
||||
- make -s $JOBS $UPDATE_UNICODE -o update-src up
|
||||
- make -s $JOBS srcs
|
||||
- rm -f config.status Makefile rbconfig.rb .rbconfig.time
|
||||
- $SETARCH ./configure -C --disable-install-doc --prefix=$RUBY_PREFIX --disable-rubygems 'optflags=-O0' 'debugflags=-save-temps=obj -g'
|
||||
|
|
|
@ -47,7 +47,8 @@ for:
|
|||
- echo>> Makefile BUILTIN_ENCOBJS=nul
|
||||
- type win32\Makefile.sub >> Makefile
|
||||
- nmake %mflags% touch-unicode-files
|
||||
- nmake %mflags% %UPDATE_UNICODE% up incs
|
||||
- nmake %mflags% %UPDATE_UNICODE% incs
|
||||
- nmake %mflags% extract-extlibs
|
||||
- del Makefile
|
||||
- mkdir \usr\local\bin
|
||||
- mkdir \usr\local\include
|
||||
|
|
Loading…
Reference in a new issue