Skip to content

Commit

Permalink
Correct dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
juadde committed May 21, 2024
1 parent 9405bf9 commit 52e4032
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ jobs:

test_a429_centos_amazonlinux:
runs-on: ubuntu-latest
needs: package_centos_plugin
needs: [package_centos_plugin, dependency_download]
steps:
- name: Get test files
uses: actions/checkout@v4
Expand Down Expand Up @@ -434,7 +434,7 @@ jobs:

test_discrete_centos_amazonlinux:
runs-on: ubuntu-latest
needs: package_centos_plugin
needs: [package_centos_plugin, dependency_download]
steps:
- name: Get test files
uses: actions/checkout@v4
Expand All @@ -447,11 +447,14 @@ jobs:
uses: actions/download-artifact@v4
with:
name: Wireshark-plugin-centos
- name: Download Wireshark sources
uses: actions/download-artifact@v4
with:
name: Wireshark-Sources
- name: Compile and run TShark on ARINC429 traffic
run: >
docker run -v .:/test amazonlinux sh -c "
yum install -y xz cmake g++ glib2-devel libgcrypt-devel c-ares-devel flex patch readline-devel unzip tar gzip &&
curl https://www.wireshark.org/download/src/wireshark-${WIRESHARK_VERSION}.tar.xz -o wireshark.tar.xz &&
tar -xvf wireshark.tar.xz &&
cd wireshark-* &&
cmake ${WIRESHARK_CENTOS_BUILD_OPTS} -DENABLE_LUA=ON -DFETCH_lua=ON -DBUILD_wireshark=OFF -DBUILD_tshark=ON . &&
Expand Down

0 comments on commit 52e4032

Please sign in to comment.