diff options
| author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2025-04-18 19:45:50 +0900 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2025-04-21 12:25:41 +0900 |
| commit | a12fe4012462bb47357b3777b736d38bb911854c (patch) | |
| tree | d4eef3f0b7e6c9c8b591e00a66cefabb010d8d1f | |
| parent | 123726ca78e8bb8301664fa27f91f7eaf5f80808 (diff) | |
Manually generate dummy revision.h file
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/13118
| -rw-r--r-- | .github/workflows/windows.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 1ec0b10908..df17653cbf 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -158,6 +158,20 @@ jobs: # But not for this Visual Studio workflow. So here we extract gems before building. - run: nmake extract-gems + # windows-11-arm runner cannot run `ruby tool/file2lastrev.rb --revision.h --output=revision.h` + - run: | + Set-Content -Path "revision.h" -Value @" + #define RUBY_REVISION "8aedb979da" + #define RUBY_FULL_REVISION "8aedb979da4090116f4fc5a6497f139fd0038881" + #define RUBY_BRANCH_NAME "win-arm" + #define RUBY_RELEASE_DATETIME "2025-04-16T23:18:54Z" + #define RUBY_RELEASE_YEAR 2025 + #define RUBY_RELEASE_MONTH 4 + #define RUBY_RELEASE_DAY 17 + "@ + shell: pwsh + if: ${{ matrix.os == '11-arm' }} + - run: nmake - name: Set up Launchable |
