From d9c880404578f891ec5de5e13346e46e1a6ea94b Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 16 Jun 2020 12:29:02 +0900 Subject: [PATCH] Update without touch-unicode-files --- .github/workflows/compilers.yml | 5 +---- .github/workflows/macos.yml | 5 +---- .github/workflows/mjit.yml | 5 +---- .github/workflows/ubuntu.yml | 5 +---- .github/workflows/windows.yml | 1 - 5 files changed, 4 insertions(+), 17 deletions(-) diff --git a/.github/workflows/compilers.yml b/.github/workflows/compilers.yml index 9314cc24c4..88d6f0e214 100644 --- a/.github/workflows/compilers.yml +++ b/.github/workflows/compilers.yml @@ -164,10 +164,7 @@ jobs: ${default_configure} \ ${append_configure} \ --with-gcc="${default_cc} ${append_cc}" - - name: Update include files - run: | - $make touch-unicode-files - $make $UPDATE_UNICODE -o update-src incs + - run: $make incs working-directory: build - run: $make working-directory: build diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 18e3d25a2d..afd0c88aa4 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -38,10 +38,7 @@ 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 + - run: make $JOBS incs working-directory: build - run: make $JOBS working-directory: build diff --git a/.github/workflows/mjit.yml b/.github/workflows/mjit.yml index d575615937..05d944b766 100644 --- a/.github/workflows/mjit.yml +++ b/.github/workflows/mjit.yml @@ -41,10 +41,7 @@ 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 + - run: make $JOBS incs working-directory: build - run: make $JOBS working-directory: build diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index ef134d72f7..0d81666e13 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -55,10 +55,7 @@ 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 + - run: make $JOBS incs working-directory: build - run: make $JOBS working-directory: build diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 9e9b512754..2f1f3a7570 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -55,7 +55,6 @@ jobs: call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat" set YACC=win_bison echo on - nmake touch-unicode-files nmake incs nmake extract-extlibs nmake -- GitLab