Skip to content

Commit

Permalink
update github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulGrandperrin committed May 21, 2024
1 parent 27bd96f commit 8c2497e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ updates:
- package-ecosystem: "cargo" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
interval: "monthly"
38 changes: 19 additions & 19 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:

jobs:
ubuntu-nightly:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand All @@ -20,26 +20,26 @@ jobs:
toolchain: nightly
override: true
- name: Install Deps
run: sudo apt-get install --no-install-recommends binutils-dev libunwind8-dev
run: sudo apt-get install --no-install-recommends build-essential binutils-dev libunwind-dev libblocksruntime-dev liblzma-dev
- name: Test
run: ./test.sh

ubuntu-beta:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: beta
override: true
- name: Install Deps
run: sudo apt-get install --no-install-recommends binutils-dev libunwind8-dev
- name: Test
run: ./test.sh
# ubuntu-beta:
# runs-on: ubuntu-24.04
# steps:
# - uses: actions/checkout@v2
# - uses: actions-rs/toolchain@v1
# with:
# profile: minimal
# toolchain: beta
# override: true
# - name: Install Deps
# run: sudo apt-get install --no-install-recommends build-essential binutils-dev libunwind-dev libblocksruntime-dev liblzma-dev
# - name: Test
# run: ./test.sh

ubuntu-stable:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand All @@ -48,12 +48,12 @@ jobs:
toolchain: stable
override: true
- name: Install Deps
run: sudo apt-get install --no-install-recommends binutils-dev libunwind8-dev
run: sudo apt-get install --no-install-recommends build-essential binutils-dev libunwind-dev libblocksruntime-dev liblzma-dev
- name: Test
run: ./test.sh

ubuntu-msrv:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand All @@ -62,7 +62,7 @@ jobs:
toolchain: 1.47.0
override: true
- name: Install Deps
run: sudo apt-get install --no-install-recommends binutils-dev libunwind8-dev
run: sudo apt-get install --no-install-recommends build-essential binutils-dev libunwind-dev libblocksruntime-dev liblzma-dev
- name: Test
run: ./test.sh

Expand Down

0 comments on commit 8c2497e

Please sign in to comment.