Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/ebmc-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
sudo apt-get update
sudo apt-get install --no-install-recommends -yq gcc g++ jq flex bison libxml2-utils ccache
- name: Prepare ccache
uses: actions/cache@v4
uses: actions/cache@v5
with:
save-always: true
path: /home/runner/.cache
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
tar xJf ccache-4.9.1-linux-x86_64.tar.xz
cp ccache-4.9.1-linux-x86_64/ccache /usr/bin/
- name: cache for ccache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: /github/home/.cache/ccache
save-always: true
Expand Down Expand Up @@ -244,7 +244,7 @@ jobs:
source ./emsdk_env.sh
emcc --version
- name: Prepare ccache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: /home/runner/.cache
save-always: true
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pull-request-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Log the version of gcc
run: gcc --version
- name: Prepare ccache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: .ccache
save-always: true
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
- name: Confirm z3 solver is available and log the version installed
run: z3 --version
- name: Prepare ccache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: .ccache
save-always: true
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
# yum config-manager --set-enabled powertools
# yum install glibc-static libstdc++-static
- name: cache for ccache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: /github/home/.cache/ccache
save-always: true
Expand Down Expand Up @@ -306,7 +306,7 @@ jobs:
- name: Confirm z3 solver is available and log the version installed
run: z3 --version
- name: Prepare ccache
uses: actions/cache@v4
uses: actions/cache@v5
with:
save-always: true
path: .ccache
Expand Down Expand Up @@ -379,7 +379,7 @@ jobs:
source ./emsdk_env.sh
emcc --version
- name: Prepare ccache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: .ccache
save-always: true
Expand Down Expand Up @@ -455,7 +455,7 @@ jobs:
- name: Initialise Developer Command Line
uses: ilammy/msvc-dev-cmd@v1
- name: Prepare ccache
uses: actions/cache@v4
uses: actions/cache@v5
with:
save-always: true
path: .ccache
Expand Down
Loading