diff options
| author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2020-06-16 11:44:31 +0900 |
|---|---|---|
| committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2020-06-16 12:15:55 +0900 |
| commit | 466d3e68da5df4f76d87332ff6786a391cc8bde4 (patch) | |
| tree | 89bd45963fa2745cdc7278c263cc367a429c82eb /.github/workflows/mingw.yml | |
| parent | b52862d35f21710d473921b625f2104be01db900 (diff) | |
Just update sources in CI without fetching
Also install external libraries only, extract-gems does not work
unless base ruby is available.
Diffstat (limited to '.github/workflows/mingw.yml')
| -rw-r--r-- | .github/workflows/mingw.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml index fa3410ee9c..95abd3300d 100644 --- a/.github/workflows/mingw.yml +++ b/.github/workflows/mingw.yml @@ -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 |
