Skip to content

Commit

Permalink
Update all deps to the latest state (#818)
Browse files Browse the repository at this point in the history
* test with the parity rust image

* do updates without sudo

* fix toolchain

* try without image

* use sudo for apt update

* try with newest deps

* update deps and revert back rust installation

* Use parity rust image to fix pipeline (#816)

* test with the parity rust image

* do updates without sudo

* fix toolchain

* test with the parity rust image

* remove conrainer usage

* uncomment rust installation

* use sudo for apt

* revert back to stable

* remove container usage

* add sudo and rust installation
  • Loading branch information
EgorPopelyaev authored Jan 7, 2025
1 parent 3cc6a7b commit 528fe18
Show file tree
Hide file tree
Showing 7 changed files with 637 additions and 309 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/cli-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ on:
jobs:
test:
runs-on: ubuntu-latest
container:
image: docker.io/paritytech/ci-unified:bullseye-1.81.0-2024-11-19-v202411281558
steps:
- name: 🛎 Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
container:
image: docker.io/paritytech/ci-unified:bullseye-1.81.0-2024-11-19-v202411281558

steps:
- name: 🛎 Checkout
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/rust-install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ runs:
steps:
- name: 🛠️Install system dependencies
run: |
apt update
apt install -y clang libclang-dev libopencv-dev
sudo apt update
sudo apt install -y clang libclang-dev libopencv-dev
shell: bash

# - name: 🔧 Install Rust (Stable)
# run: |
# curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
# shell: bash
- name: 🔧 Install Rust (Stable)
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
shell: bash

- name: 💾 Rust Cache
uses: Swatinem/rust-cache@v2
6 changes: 2 additions & 4 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ env:
jobs:
update:
runs-on: ubuntu-latest
container:
image: docker.io/paritytech/ci-unified:bullseye-1.81.0-2024-11-19-v202411281558

steps:
- name: 🛎 Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -87,8 +86,7 @@ jobs:

check-deployment:
runs-on: ubuntu-latest
container:
image: docker.io/paritytech/ci-unified:bullseye-1.81.0-2024-11-19-v202411281558

steps:
- name: 🛎 Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ on:
jobs:
verify:
runs-on: ubuntu-latest
container:
image: docker.io/paritytech/ci-unified:bullseye-1.81.0-2024-11-19-v202411281558

steps:
- name: 🛎 Checkout
Expand Down
Loading

0 comments on commit 528fe18

Please sign in to comment.