Skip to content

Commit

Permalink
attempt to cache apt
Browse files Browse the repository at this point in the history
  • Loading branch information
jkelleyrtp committed Jan 30, 2025
1 parent 73b6726 commit f1f83ac
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt-get update
- run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev libxdo-dev
# - run: sudo apt-get update
# - run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev libxdo-dev
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev libxdo-dev
version: 1.0
- uses: dtolnay/[email protected]
- uses: jkelleyrtp/rust-cache@jk/extra-logging
with:
Expand All @@ -168,8 +172,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt-get update
- run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev
# - run: sudo apt-get update
# - run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev libxdo-dev
version: 1.0
- uses: dtolnay/[email protected]
with:
components: rustfmt, clippy
Expand Down Expand Up @@ -221,7 +229,7 @@ jobs:
cache-all-crates: "true"
- name: Prebuild CLI
run: |
CARGO_LOG=debug cargo build --package dioxus-cli --release
cargo build --package dioxus-cli --release
- name: Playwright
working-directory: ./packages/playwright-tests
run: |
Expand Down

0 comments on commit f1f83ac

Please sign in to comment.