diff options
| author | Yong He <yonghe@outlook.com> | 2025-02-27 21:06:15 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-27 21:06:15 -0800 |
| commit | 9fd3e7c150ed9723c153948312a226345f3b8633 (patch) | |
| tree | 40f1e460a2452a9e5a1b889c4f7de48e01b93383 /.github/workflows/release.yml | |
| parent | 4d415f6af2266cc38798d72f6816c60b91a5003c (diff) | |
Fix CI settings. (#6491)
* fix ci.
* fix.
* format code
---------
Co-authored-by: slangbot <186143334+slangbot@users.noreply.github.com>
Diffstat (limited to '.github/workflows/release.yml')
| -rw-r--r-- | .github/workflows/release.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e6e9a5a8d..637ca3211 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,13 @@ jobs: platform: [x86_64, aarch64] test-category: [smoke] include: - - { os: linux, runs-on: ubuntu-20.04, compiler: gcc } + - { os: linux, platform:x86_64, runs-on: ubuntu-22.04, compiler: gcc } + - { + os: linux, + platform:aarch64, + runs-on: ubuntu-22.04-arm, + compiler: gcc, + } - { os: windows, runs-on: windows-latest, compiler: cl } - { os: macos, runs-on: macos-latest, compiler: clang } |
