From dd7b203c1ec9ef83cc53dbff5b90bc1b49e5115a Mon Sep 17 00:00:00 2001 From: Hans Ulrich Niedermann Date: Fri, 6 Aug 2021 22:44:06 +0200 Subject: gh workflows: remove requirements for flex, bison As 4316f75ed4ce7a4ae5296264699665631c4e62d6 has removed gp2ddb with its use of flex and bison, we do not need flex and bison any more, and so the github workflows do not need to install flex and bison either. --- .github/workflows/ccpp.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 716d5f569..ef5c45359 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -14,7 +14,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: apt-get install - run: sudo apt-get update && sudo apt-get install -y autopoint gettext libusb-1.0-0-dev libcurl4-openssl-dev bison flex + run: sudo apt-get update && sudo apt-get install -y autopoint gettext libusb-1.0-0-dev libcurl4-openssl-dev - name: autoreconf run: autoreconf -i -f - name: configure diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index ed1da8b95..b784f9eed 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -42,7 +42,7 @@ jobs: if: ${{ github.event_name == 'pull_request' }} # install all necessary things - - run: sudo apt-get update && sudo apt-get install -y autopoint gettext libusb-1.0-0-dev libcurl4-openssl-dev bison flex + - run: sudo apt-get update && sudo apt-get install -y autopoint gettext libusb-1.0-0-dev libcurl4-openssl-dev # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL -- cgit v1.2.1