Skip to content

Commit 9e345e8

Browse files
committed
build: disable ccache from all workflows
1 parent d820873 commit 9e345e8

File tree

8 files changed

+1
-17
lines changed

8 files changed

+1
-17
lines changed

.github/workflows/benchmark.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ jobs:
1414
runs-on: ubuntu-22.04
1515
steps:
1616
- uses: actions/checkout@v2
17-
- name: ccache
18-
uses: hendrikmuhs/[email protected]
1917
- name: Install ICU
2018
run: sudo apt-get install -y libicu-dev pkg-config
2119
- name: Install curl

.github/workflows/ubuntu-sanitized.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ jobs:
1919
shared: [ON, OFF]
2020
steps:
2121
- uses: actions/checkout@v3
22-
- name: ccache
23-
uses: hendrikmuhs/[email protected]
2422
- name: Install ICU
2523
run: sudo apt-get install -y libicu-dev pkg-config
2624
- name: Setup Ninja

.github/workflows/ubuntu.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ jobs:
2020
cxx: [g++-12, clang++-14]
2121
steps:
2222
- uses: actions/checkout@v3
23-
- name: ccache
24-
uses: hendrikmuhs/[email protected]
2523
- name: Install ICU
2624
run: sudo apt-get install -y libicu-dev pkg-config
2725
- name: Setup Ninja

.github/workflows/ubuntu_install.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ jobs:
1616
runs-on: ubuntu-22.04
1717
steps:
1818
- uses: actions/checkout@v3
19-
- name: ccache
20-
uses: hendrikmuhs/[email protected]
2119
- name: Install ICU
2220
run: sudo apt-get install -y libicu-dev pkg-config
2321
- name: Setup Ninja

.github/workflows/ubuntu_old.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ jobs:
2020
cxx: [g++-9, clang++-10]
2121
steps:
2222
- uses: actions/checkout@v3
23-
- name: ccache
24-
uses: hendrikmuhs/[email protected]
2523
- name: Clear the cache
2624
run: rm -r -f dependencies
2725
- name: Install ICU

.github/workflows/ubuntu_pedantic.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ jobs:
1919
shared: [ON, OFF]
2020
steps:
2121
- uses: actions/checkout@v3
22-
- name: ccache
23-
uses: hendrikmuhs/[email protected]
2422
- name: Install ICU
2523
run: sudo apt-get install -y libicu-dev pkg-config
2624
- name: Setup Ninja

.github/workflows/visual_studio.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ jobs:
1717
steps:
1818
- name: checkout
1919
uses: actions/checkout@v3
20-
- name: ccache
21-
uses: hendrikmuhs/[email protected]
2220
- name: Configure
2321
run: |
2422
cmake -G "${{matrix.gen}}" -A ${{matrix.arch}} -B build
@@ -29,4 +27,4 @@ jobs:
2927
- name: Run Release tests
3028
run: |
3129
cd build
32-
ctest -C Release --output-on-failure
30+
ctest -C Release --output-on-failure

.github/workflows/visual_studio_clang.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ jobs:
1717
steps:
1818
- name: checkout
1919
uses: actions/checkout@v3
20-
- name: ccache
21-
uses: hendrikmuhs/[email protected]
2220
- name: Configure
2321
run: |
2422
cmake -G "${{matrix.gen}}" -A ${{matrix.arch}} -T ClangCL -B build

0 commit comments

Comments
 (0)