Compare commits
No commits in common. "8afcafe890ab2a32cb133dcb3cbd93f6b1623ed4" and "b5c81b2a01ac2ebe1c631bc0ccfaec055e2dd9b8" have entirely different histories.
8afcafe890
...
b5c81b2a01
1 changed files with 4 additions and 7 deletions
|
|
@ -20,19 +20,16 @@ jobs:
|
||||||
PATH: /root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
PATH: /root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
steps:
|
steps:
|
||||||
- name: Install system dependencies, Node.js and Rust
|
- name: Install system dependencies
|
||||||
run: |
|
run: |
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install -y --no-install-recommends \
|
apt-get install -y --no-install-recommends \
|
||||||
curl wget git ca-certificates build-essential pkg-config \
|
curl wget git ca-certificates build-essential pkg-config \
|
||||||
libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev libssl-dev
|
libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev libssl-dev
|
||||||
# Node.js is required by actions/checkout and actions/cache (they
|
|
||||||
# are JavaScript actions and need `node` in the container PATH).
|
- name: Install Rust toolchain (stable)
|
||||||
curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
|
run: |
|
||||||
apt-get install -y nodejs
|
|
||||||
# Rust toolchain
|
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
|
||||||
node --version
|
|
||||||
rustc --version
|
rustc --version
|
||||||
cargo --version
|
cargo --version
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue