mirror of
https://github.com/maplibre/maplibre-rs.git
synced 2025-12-08 19:05:57 +00:00
Try to force different toolchains
This commit is contained in:
parent
704bb25818
commit
3ede57b6ce
2
.github/actions/android/action.yml
vendored
2
.github/actions/android/action.yml
vendored
@ -9,6 +9,8 @@ runs:
|
|||||||
shell: bash
|
shell: bash
|
||||||
run: just nightly-toolchain
|
run: just nightly-toolchain
|
||||||
- uses: Swatinem/rust-cache@v1
|
- uses: Swatinem/rust-cache@v1
|
||||||
|
with:
|
||||||
|
toolchain: nightly
|
||||||
- name: Build
|
- name: Build
|
||||||
shell: bash
|
shell: bash
|
||||||
run: just build-apk
|
run: just build-apk
|
||||||
|
|||||||
2
.github/actions/webgl/action.yml
vendored
2
.github/actions/webgl/action.yml
vendored
@ -9,6 +9,8 @@ runs:
|
|||||||
shell: bash
|
shell: bash
|
||||||
run: just nightly-toolchain
|
run: just nightly-toolchain
|
||||||
- uses: Swatinem/rust-cache@v1
|
- uses: Swatinem/rust-cache@v1
|
||||||
|
with:
|
||||||
|
toolchain: nightly
|
||||||
- name: Build
|
- name: Build
|
||||||
shell: bash
|
shell: bash
|
||||||
run: just webpack-webgl-production
|
run: just webpack-webgl-production
|
||||||
|
|||||||
2
.github/actions/webgpu/action.yml
vendored
2
.github/actions/webgpu/action.yml
vendored
@ -9,6 +9,8 @@ runs:
|
|||||||
shell: bash
|
shell: bash
|
||||||
run: just nightly-toolchain
|
run: just nightly-toolchain
|
||||||
- uses: Swatinem/rust-cache@v1
|
- uses: Swatinem/rust-cache@v1
|
||||||
|
with:
|
||||||
|
toolchain: nightly
|
||||||
- name: Build
|
- name: Build
|
||||||
shell: bash
|
shell: bash
|
||||||
run: just webpack-production
|
run: just webpack-production
|
||||||
|
|||||||
1
justfile
1
justfile
@ -29,6 +29,7 @@ default-toolchain:
|
|||||||
nightly-toolchain:
|
nightly-toolchain:
|
||||||
rustup install $NIGHTLY_TOOLCHAIN
|
rustup install $NIGHTLY_TOOLCHAIN
|
||||||
rustup component add rust-src --toolchain $NIGHTLY_TOOLCHAIN
|
rustup component add rust-src --toolchain $NIGHTLY_TOOLCHAIN
|
||||||
|
rustup override set $NIGHTLY_TOOLCHAIN
|
||||||
|
|
||||||
webpack-webgl-production: nightly-toolchain
|
webpack-webgl-production: nightly-toolchain
|
||||||
cd web/web && npm install && npm run webgl-production-build
|
cd web/web && npm install && npm run webgl-production-build
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user