Skip to content

Commit

Permalink
ci: Fix debian and ubuntu release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
RainingComputers committed Jan 9, 2025
1 parent 6a8d214 commit d7a128b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 13 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/quality-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,6 @@ jobs:
uses: nixbuild/nix-quick-install-action@v29
- name: Run clang-format
run: nix-shell --run 'make format-dry-run'
Tidy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install nix
uses: nixbuild/nix-quick-install-action@v29
- name: Run clang-tidy
run: nix-shell --run 'make tidy'
Test:
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
LLVM_ZIP: ${{ matrix.arch.llvm }}
steps:
- name: Install qemu
run: sudo apt install qemu binfmt-support qemu-user qemu-user-static
run: sudo apt install qemu-system binfmt-support qemu-user qemu-user-static
- name: Checkout
uses: actions/checkout@v2
- name: Build docker build environment
Expand Down
4 changes: 2 additions & 2 deletions ci/Linux/debian/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ RUN apt -y update
RUN apt -y upgrade
RUN apt -y install tar g++ make findutils libncurses5 curl xz-utils zlib*

# Install llvm-11 for shared libraries, this llvm will not be used
RUN apt -y install llvm-11
# Install llvm-12 for shared libraries, this llvm will not be used
RUN apt -y install llvm-12
2 changes: 1 addition & 1 deletion ci/Linux/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ FROM ubuntu:latest

RUN apt-get -y update
RUN apt-get -y upgrade
RUN apt-get -y install tar g++ make findutils libncurses5 curl xz-utils zlib*
RUN apt-get -y install tar g++ make findutils libncurses6 curl xz-utils zlib*

0 comments on commit d7a128b

Please sign in to comment.