Skip to content

Commit

Permalink
chore: add debian too
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexD10S committed May 9, 2024
1 parent 4df3c9e commit c1013b8
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,21 @@ jobs:
run: apt-get update && apt-get -y install build-essential cmake curl git
- name: Install Rust
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
- name: Install Pop
- name: Pop Install
run: |
. "$HOME/.cargo/env"
cargo install --locked --path ./crates/pop-cli
pop install -y
debian:
runs-on: ubuntu-latest
container: debian
steps:
- uses: actions/checkout@v4
- name: Install prerequisites
run: apt-get update && apt-get -y install build-essential cmake curl git
- name: Install Rust
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
- name: Pop Install
run: |
. "$HOME/.cargo/env"
cargo install --locked --path ./crates/pop-cli
Expand All @@ -31,7 +45,7 @@ jobs:
- uses: actions/checkout@v4
- name: Install Rust
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
- name: Install Pop
- name: Pop Install
run: |
. "$HOME/.cargo/env"
cargo install --locked --path ./crates/pop-cli
Expand Down

0 comments on commit c1013b8

Please sign in to comment.