Skip to content

Commit

Permalink
update apt cache
Browse files Browse the repository at this point in the history
  • Loading branch information
MacOMNI committed Aug 29, 2024
1 parent f33ea1b commit ba175f4
Showing 1 changed file with 21 additions and 8 deletions.
29 changes: 21 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,29 @@ jobs:
uses: actions/checkout@v4
with:
submodules: recursive
- name: MsQuic Install Dependencies
- name: Cache APT lists
uses: actions/cache@v4
with:
path: /var/lib/apt/lists
key: ${{ runner.os }}-apt-lists-${{ hashFiles('Networking/Sources/msquic/**') }}
restore-keys: |
${{ runner.os }}-apt-lists-
- name: Cache APT packages
uses: actions/cache@v4
with:
run: |
export DEBIAN_FRONTEND=noninteractive
sudo apt-add-repository -y ppa:lttng/stable-2.13
sudo apt-get update
sudo apt-get install -y lttng-tools lttng-modules-dkms babeltrace2 liblttng-ust-dev python3-babeltrace
sudo apt-get install -y cmake
sudo apt-get install -y build-essential
path: /var/cache/apt
key: ${{ runner.os }}-apt-${{ hashFiles('Networking/Sources/msquic/**') }}
restore-keys: |
${{ runner.os }}-apt-
- name: MsQuic Install Dependencies
run: |
export DEBIAN_FRONTEND=noninteractive
sudo apt-add-repository -y ppa:lttng/stable-2.13
sudo apt-get update
sudo apt-get install -y lttng-tools lttng-modules-dkms babeltrace2 liblttng-ust-dev python3-babeltrace
sudo apt-get install -y cmake
sudo apt-get install -y build-essential
- name: Get msquic submodule commit hash
id: msquic-commit-hash
run: |
Expand Down

0 comments on commit ba175f4

Please sign in to comment.