Skip to content

Commit

Permalink
Remove unsupported OS for github actions (#271)
Browse files Browse the repository at this point in the history
Signed-off-by: yhmo <yihua.mo@zilliz.com>
  • Loading branch information
yhmo authored Jan 8, 2025
1 parent 0c1a669 commit d3e21c3
Showing 1 changed file with 11 additions and 15 deletions.
26 changes: 11 additions & 15 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,13 @@ jobs:
matrix:
os:
- distro: Ubuntu
version: 18.04
image: ubuntu:18.04
key: u1804
version: 20.04
image: ubuntu:20.04
key: u2004
- distro: Ubuntu
version: 22.04
image: ubuntu:22.04
key: u2204
- distro: CentOS
version: 7
image: centos:7
key: c7
- distro: Fedora
version: 38
image: fedora:38
Expand All @@ -67,9 +63,9 @@ jobs:
- name: Env
run: echo "${HOME}/.local/bin" >> $GITHUB_PATH
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Cache ccache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{ github.workspace }}/.ccache
Expand Down Expand Up @@ -103,9 +99,9 @@ jobs:
- name: Env
run: echo "${HOME}/.local/bin" >> $GITHUB_PATH
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Cache ccache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{ github.workspace }}/.ccache
Expand Down Expand Up @@ -142,9 +138,9 @@ jobs:
CCACHE_MAXSIZE: 2G
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Cache ccache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{ github.workspace }}/.ccache
Expand All @@ -167,9 +163,9 @@ jobs:
CCACHE_COMPRESSLEVEL: 5
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Cache ccache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{ github.workspace }}/.ccache
Expand Down

0 comments on commit d3e21c3

Please sign in to comment.