Skip to content

Commit

Permalink
CI: remove sudo in ubuntu container
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrilbouvier committed Mar 18, 2024
1 parent 5de3c98 commit 0ce7ef6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Tests

Check notice on line 1 in .github/workflows/tests.yml

View workflow job for this annotation

GitHub Actions / cmake-build-and-check (gaol, none)

Checksum

CHECKSUM=dc934e7fe68bfd27e4224c94791ac9b79a27b50a98ebba28fba75678072428f02b1b47c218544820d3fe6cc021b9d7e8513177f25bff8c0ea9e0840d6e0ff5a0
on: push
env:
CHECKSUM: ee247257d816198f799e50184cfde8a92d0b70c075a7b7cbbbac50a6a06370558967a0202fa95862d0207abcf63341b362ffeb55cd4167bd83f73e379de8a4f7
CHECKSUM: dc934e7fe68bfd27e4224c94791ac9b79a27b50a98ebba28fba75678072428f02b1b47c218544820d3fe6cc021b9d7e8513177f25bff8c0ea9e0840d6e0ff5a0
jobs:
cmake-build-and-check:
runs-on: self-hosted
Expand All @@ -11,7 +11,9 @@ jobs:
- name: Checkout
uses: actions/[email protected]
- name: Install dependencies
run: sudo apt install -y flex bison libcppunit-dev
run: |
apt update
apt install -y flex bison libcppunit-dev
- name: CMake
run: |
mkdir build
Expand Down

0 comments on commit 0ce7ef6

Please sign in to comment.