Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change os tag of Linux workflow from ubuntu-latest to ubuntu-20.04 #2030

Merged
merged 1 commit into from
Dec 2, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:

jobs:
gcc-compile-with-make:
runs-on: ubuntu-latest # https://github.com/actions/runner-images
runs-on: ubuntu-20.04 # https://github.com/actions/runner-images
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/install-essential-dependences
Expand All @@ -23,7 +23,7 @@ jobs:
make -j ${{env.proc_num}}

gcc-compile-with-cmake:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/install-essential-dependences
Expand All @@ -39,7 +39,7 @@ jobs:
make -j ${{env.proc_num}}

gcc-compile-with-bazel:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: install dependences
Expand All @@ -52,7 +52,7 @@ jobs:
bazel build -j ${{env.proc_num}} -c opt --copt -DHAVE_ZLIB=1 //...

gcc-compile-with-make-all-options:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/install-all-dependences
Expand All @@ -64,7 +64,7 @@ jobs:
make -j ${{env.proc_num}}

gcc-compile-with-cmake-all-options:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/install-all-dependences
Expand All @@ -80,7 +80,7 @@ jobs:
make -j ${{env.proc_num}}

gcc-compile-with-bazel-all-options:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: install dependences
Expand All @@ -94,7 +94,7 @@ jobs:


clang-compile-with-make:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/install-essential-dependences
Expand All @@ -106,7 +106,7 @@ jobs:
make -j ${{env.proc_num}}

clang-compile-with-cmake:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/install-essential-dependences
Expand All @@ -122,7 +122,7 @@ jobs:
make -j ${{env.proc_num}}

clang-compile-with-bazel:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: install dependences
Expand All @@ -135,7 +135,7 @@ jobs:
bazel build -j ${{env.proc_num}} -c opt --copt -DHAVE_ZLIB=1 //...

clang-compile-with-make-all-options:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/install-all-dependences
Expand All @@ -147,7 +147,7 @@ jobs:
make -j ${{env.proc_num}}

clang-compile-with-cmake-all-options:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/install-all-dependences
Expand All @@ -163,7 +163,7 @@ jobs:
make -j ${{env.proc_num}}

clang-compile-with-bazel-all-options:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: install dependences
Expand All @@ -176,7 +176,7 @@ jobs:
bazel build -j ${{env.proc_num}} -c opt --define with_mesalink=false --define with_glog=true --define with_thrift=true --copt -DHAVE_ZLIB=1 //...

clang-unittest:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/install-essential-dependences
Expand Down