]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Remove package conflicts
authorNick Porter <nick@portercomputing.co.uk>
Tue, 27 Jun 2023 11:28:26 +0000 (12:28 +0100)
committerNick Porter <nick@portercomputing.co.uk>
Tue, 27 Jun 2023 11:51:31 +0000 (12:51 +0100)
.github/actions/build-freeradius/action.yml

index d3f8fdb3964406de342dfcbc4b3c9d8489e4e409..c1fdbf7f6efb7271bc83c694eb47610170c57a11 100644 (file)
@@ -78,6 +78,13 @@ runs:
         sudo /bin/sh -c "echo \"deb http://packages.networkradius.com/extras/${DIST}/${RELEASE} ${RELEASE} main\" \
           > /etc/apt/sources.list.d/networkradius-extras.list"
 
+    #  Currently GitHub runners have a conflicting version of libhashkit2 installed which breaks dependency installation
+    - name: Remove package conflicts
+      if: ${{ runner.os != 'macOS' }}
+      shell: bash
+      run: |
+        sudo apt-get remove -y libhashkit2
+
     - name: Install build dependencies based on Debian packages plus extra CI packages
       if: ${{ runner.os != 'macOS' }}
       shell: bash