Skip to content

Commit

Permalink
ci(actions): 💚 reorder steps to ensure wget is presented
Browse files Browse the repository at this point in the history
  • Loading branch information
Jisu-Woniu committed Mar 30, 2024
1 parent d6250bb commit 76b4102
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/building.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get install -y wget clang
- name: Setup Rust toolchain
uses: moonrepo/setup-rust@v1
with:
channel: stable
bins: cargo-hack, cargo-deny
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get install -y wget clang
- name: Setup mold
uses: rui314/setup-mold@v1
- name: Setup buf
Expand Down Expand Up @@ -57,17 +57,17 @@ jobs:
container: debian:bullseye
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y wget lintian clang
- name: Setup Rust toolchain
uses: moonrepo/setup-rust@v1
with:
channel: stable
bins: cargo-deb
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y wget lintian clang
- name: Setup mold
uses: rui314/setup-mold@v1
- name: Setup buf
Expand Down Expand Up @@ -97,16 +97,16 @@ jobs:
container: fedora:38
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo dnf install -y clang mold protobuf-compiler
- name: Setup Rust toolchain
uses: moonrepo/setup-rust@v1
with:
channel: stable
bins: cargo-generate-rpm
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: |
sudo dnf install -y wget clang mold protobuf-compiler
- name: Setup buf
uses: bufbuild/buf-setup-action@v1
with:
Expand Down

0 comments on commit 76b4102

Please sign in to comment.