Skip to content

Commit

Permalink
Make plugin server CI work with SAML
Browse files Browse the repository at this point in the history
Lifted from #7492

Same fix as #7506, not sure why
it's needed
  • Loading branch information
macobo committed Dec 8, 2021
1 parent cb470c1 commit 7e1a80a
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/plugin-server-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ jobs:
python-version: 3.8

- name: Install SAML (python3-saml) dependencies
run: sudo apt-get install libxml2-dev libxmlsec1-dev libxmlsec1-openssl
run: |
sudo apt-get update
sudo apt-get install libxml2-dev libxmlsec1-dev libxmlsec1-openssl
- name: Set up Node 14
uses: actions/setup-node@v2
Expand Down Expand Up @@ -139,7 +141,9 @@ jobs:
python-version: 3.8

- name: Install SAML (python3-saml) dependencies
run: sudo apt-get install libxml2-dev libxmlsec1-dev libxmlsec1-openssl
run: |
sudo apt-get update
sudo apt-get install libxml2-dev libxmlsec1-dev libxmlsec1-openssl
- name: Set up Node 14
uses: actions/setup-node@v2
Expand Down Expand Up @@ -219,7 +223,9 @@ jobs:
python-version: 3.8

- name: Install SAML (python3-saml) dependencies
run: sudo apt-get install libxml2-dev libxmlsec1-dev libxmlsec1-openssl
run: |
sudo apt-get update
sudo apt-get install libxml2-dev libxmlsec1-dev libxmlsec1-openssl
- name: Set up Node 14
uses: actions/setup-node@v2
Expand Down Expand Up @@ -300,7 +306,9 @@ jobs:
python-version: 3.8

- name: Install SAML (python3-saml) dependencies
run: sudo apt-get install libxml2-dev libxmlsec1-dev libxmlsec1-openssl
run: |
sudo apt-get update
sudo apt-get install libxml2-dev libxmlsec1-dev libxmlsec1-openssl
- name: Set up Node 14
uses: actions/setup-node@v2
Expand Down

0 comments on commit 7e1a80a

Please sign in to comment.