mirror of
https://github.com/maplibre/maplibre-rs.git
synced 2025-12-08 19:05:57 +00:00
Fix install
This commit is contained in:
parent
bfa07fb625
commit
7b41971b67
14
.github/actions/cargo-install/action.yml
vendored
Normal file
14
.github/actions/cargo-install/action.yml
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
name: cargo-install
|
||||
description: Install a dependency from cargo
|
||||
|
||||
inputs:
|
||||
name:
|
||||
required: true
|
||||
description: Name of the dependency
|
||||
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- name: Install ${{ inputs.name }}
|
||||
shell: bash
|
||||
run: cargo binstall --no-confirm ${{ inputs.name }}
|
||||
4
.github/actions/setup-binstall/action.yml
vendored
4
.github/actions/setup-binstall/action.yml
vendored
@ -1,5 +1,5 @@
|
||||
name: install-driver
|
||||
description: Install drivers
|
||||
name: setup-binstall
|
||||
description: Setup binstall
|
||||
|
||||
runs:
|
||||
using: "composite"
|
||||
|
||||
5
.github/workflows/build-deploy-docs.yml
vendored
5
.github/workflows/build-deploy-docs.yml
vendored
@ -17,8 +17,9 @@ jobs:
|
||||
- name: Setup binstall
|
||||
uses: ./.github/actions/setup-binstall
|
||||
- name: Install just
|
||||
shell: bash
|
||||
run: cargo binstall just
|
||||
uses: ./.github/actions/cargo-install
|
||||
with:
|
||||
name: just
|
||||
- name: Install toolchain
|
||||
shell: bash
|
||||
run: just stable-toolchain
|
||||
|
||||
5
.github/workflows/demo-linux.yml
vendored
5
.github/workflows/demo-linux.yml
vendored
@ -12,8 +12,9 @@ jobs:
|
||||
- name: Setup binstall
|
||||
uses: ./.github/actions/setup-binstall
|
||||
- name: Install just
|
||||
shell: bash
|
||||
run: cargo binstall just
|
||||
uses: ./.github/actions/cargo-install
|
||||
with:
|
||||
name: just
|
||||
- name: Install toolchain
|
||||
shell: bash
|
||||
run: |
|
||||
|
||||
5
.github/workflows/demo-macos.yml
vendored
5
.github/workflows/demo-macos.yml
vendored
@ -12,8 +12,9 @@ jobs:
|
||||
- name: Setup binstall
|
||||
uses: ./.github/actions/setup-binstall
|
||||
- name: Install just
|
||||
shell: bash
|
||||
run: cargo binstall just
|
||||
uses: ./.github/actions/cargo-install
|
||||
with:
|
||||
name: just
|
||||
- name: Install toolchain
|
||||
shell: bash
|
||||
run: |
|
||||
|
||||
5
.github/workflows/demo-windows.yml
vendored
5
.github/workflows/demo-windows.yml
vendored
@ -12,8 +12,9 @@ jobs:
|
||||
- name: Setup binstall
|
||||
uses: ./.github/actions/setup-binstall
|
||||
- name: Install just
|
||||
shell: bash
|
||||
run: cargo binstall just
|
||||
uses: ./.github/actions/cargo-install
|
||||
with:
|
||||
name: just
|
||||
- name: Install toolchain
|
||||
shell: bash
|
||||
run: |
|
||||
|
||||
5
.github/workflows/library-android.yml
vendored
5
.github/workflows/library-android.yml
vendored
@ -12,8 +12,9 @@ jobs:
|
||||
- name: Setup binstall
|
||||
uses: ./.github/actions/setup-binstall
|
||||
- name: Install just
|
||||
shell: bash
|
||||
run: cargo binstall just
|
||||
uses: ./.github/actions/cargo-install
|
||||
with:
|
||||
name: just
|
||||
- name: Install nightly toolchain
|
||||
shell: bash
|
||||
run: |
|
||||
|
||||
5
.github/workflows/library-apple.yml
vendored
5
.github/workflows/library-apple.yml
vendored
@ -13,8 +13,9 @@ jobs:
|
||||
- name: Setup binstall
|
||||
uses: ./.github/actions/setup-binstall
|
||||
- name: Install just
|
||||
shell: bash
|
||||
run: cargo binstall just
|
||||
uses: ./.github/actions/cargo-install
|
||||
with:
|
||||
name: just
|
||||
- name: Install toolchain
|
||||
shell: bash
|
||||
run: |
|
||||
|
||||
5
.github/workflows/library-web.yml
vendored
5
.github/workflows/library-web.yml
vendored
@ -30,8 +30,9 @@ jobs:
|
||||
- name: Setup binstall
|
||||
uses: ./.github/actions/setup-binstall
|
||||
- name: Install just
|
||||
shell: bash
|
||||
run: cargo binstall just
|
||||
uses: ./.github/actions/cargo-install
|
||||
with:
|
||||
name: just
|
||||
- name: Install nightly toolchain
|
||||
shell: bash
|
||||
run: |
|
||||
|
||||
5
.github/workflows/run-benchmarks.yml
vendored
5
.github/workflows/run-benchmarks.yml
vendored
@ -12,8 +12,9 @@ jobs:
|
||||
- name: Setup binstall
|
||||
uses: ./.github/actions/setup-binstall
|
||||
- name: Install just
|
||||
shell: bash
|
||||
run: cargo binstall just
|
||||
uses: ./.github/actions/cargo-install
|
||||
with:
|
||||
name: just
|
||||
- name: Install toolchain
|
||||
shell: bash
|
||||
run: |
|
||||
|
||||
5
.github/workflows/run-checks.yml
vendored
5
.github/workflows/run-checks.yml
vendored
@ -12,8 +12,9 @@ jobs:
|
||||
- name: Setup binstall
|
||||
uses: ./.github/actions/setup-binstall
|
||||
- name: Install just
|
||||
shell: bash
|
||||
run: cargo binstall just
|
||||
uses: ./.github/actions/cargo-install
|
||||
with:
|
||||
name: just
|
||||
- name: Install toolchain
|
||||
shell: bash
|
||||
run: just stable-toolchain
|
||||
|
||||
5
.github/workflows/run-tests.yml
vendored
5
.github/workflows/run-tests.yml
vendored
@ -12,8 +12,9 @@ jobs:
|
||||
- name: Setup binstall
|
||||
uses: ./.github/actions/setup-binstall
|
||||
- name: Install just
|
||||
shell: bash
|
||||
run: cargo binstall just
|
||||
uses: ./.github/actions/cargo-install
|
||||
with:
|
||||
name: just
|
||||
- name: Install toolchain
|
||||
shell: bash
|
||||
run: |
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user