Skip to content

Commit

Permalink
fix: downgrade runners
Browse files Browse the repository at this point in the history
  • Loading branch information
baszalmstra committed Jan 9, 2025
1 parent bb9aac0 commit 589f672
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 71 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ concurrency:
jobs:
check:
name: Check
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "windows-latest", "macOS-latest"]
os: ["ubuntu-22.04", "windows-latest", "macOS-latest"]
include:
- RUSTFLAGS: "-Dwarnings"
CARGO_INCREMENTAL: 1
Expand All @@ -74,7 +74,7 @@ jobs:
submodules: true

- name: Install packages
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install libasound2-dev libudev-dev
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "windows-latest", "macOS-latest"]
os: ["ubuntu-22.04", "windows-latest", "macOS-latest"]
include:
- RUSTFLAGS: "-Dwarnings"
CARGO_INCREMENTAL: 1
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:

test-mdbook:
name: Test mdbook
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: check
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "windows-latest", "macOS-latest"]
os: ["ubuntu-22.04", "windows-latest", "macOS-latest"]
include:
- RUSTFLAGS: "-Dwarnings"
- os: "windows-latest"
Expand Down Expand Up @@ -288,7 +288,7 @@ jobs:

style:
name: Check Style
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: check
steps:
- uses: actions/checkout@v4
Expand Down
62 changes: 0 additions & 62 deletions crates/mun_language_server/src/completion/unqualified_path.rs

This file was deleted.

2 changes: 0 additions & 2 deletions scripts/install-llvm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ case "$DIST_VERSION" in
Ubuntu_20.04 ) REPO_NAME="deb http://apt.llvm.org/focal/ llvm-toolchain-focal-$LLVM_VERSION main" ;;
Ubuntu_22.04 ) REPO_NAME="deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-$LLVM_VERSION main" ;;
Ubuntu_22.10 ) REPO_NAME="deb http://apt.llvm.org/kinetic/ llvm-toolchain-kinetic-$LLVM_VERSION main" ;;
Ubuntu_24.04 ) REPO_NAME="deb http://apt.llvm.org/noble/ llvm-toolchain-noble-$LLVM_VERSION main" ;;
Ubuntu_24.10 ) REPO_NAME="deb http://apt.llvm.org/oracular/ llvm-toolchain-oracular-$LLVM_VERSION main" ;;
* )
echo "Distribution '$DISTRO' in version '$VERSION' is not supported by this script (${DIST_VERSION})."
exit 2
Expand Down

0 comments on commit 589f672

Please sign in to comment.