Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

try upcoming julia-actions/cache version #3419

Closed
wants to merge 3 commits into from
Closed
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
4 changes: 3 additions & 1 deletion .github/workflows/cairomakie.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ jobs:
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/cache@6a6c9655f5b96cc88bac8ae777c87d01883af170
with:
cache-name: 'julia-cache-${{ github.workflow }}-${{ github.job }}'
- name: Install Julia dependencies
shell: julia --project=monorepo {0}
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ jobs:
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/cache@6a6c9655f5b96cc88bac8ae777c87d01883af170
with:
cache-name: 'julia-cache-${{ github.workflow }}-${{ github.job }}'
- name: Develop and test Makie
shell: julia --project=monorepo {0}
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/compilation-benchmark.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ jobs:
version: '1'
include-all-prereleases: true
arch: x64
- uses: julia-actions/cache@v1
- uses: julia-actions/cache@6a6c9655f5b96cc88bac8ae777c87d01883af170
with:
cache-name: 'julia-cache-${{ github.workflow }}-${{ github.job }}'
- name: Benchmark
continue-on-error: true
env:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/glmakie.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ jobs:
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/cache@6a6c9655f5b96cc88bac8ae777c87d01883af170
with:
cache-name: 'julia-cache-${{ github.workflow }}-${{ github.job }}'
- run: sudo apt-get update && sudo apt-get install -y xorg-dev mesa-utils xvfb libgl1 freeglut3-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxext-dev xsettingsd x11-xserver-utils
- name: Install Julia dependencies
shell: julia --project=monorepo {0}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/rprmakie.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ jobs:
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/cache@6a6c9655f5b96cc88bac8ae777c87d01883af170
with:
cache-name: 'julia-cache-${{ github.workflow }}-${{ github.job }}'
- name: Install Julia dependencies
shell: julia --project=monorepo {0}
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/wglmakie.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ jobs:
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/cache@6a6c9655f5b96cc88bac8ae777c87d01883af170
with:
cache-name: 'julia-cache-${{ github.workflow }}-${{ github.job }}'
- run: sudo apt-get update && sudo apt-get install -y xorg-dev mesa-utils xvfb libgl1 freeglut3-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxext-dev
- name: Install Julia dependencies
shell: julia --project=monorepo {0}
Expand Down
Loading