From ca4e5bbcc95931ee88e65d8a4e508e946e6a8e17 Mon Sep 17 00:00:00 2001 From: Giuseppe Franco Date: Fri, 14 Jul 2023 14:00:08 +0200 Subject: [PATCH] Setup: fix installation of libgomp1 (#662) --- .github/workflows/base.yml.template | 5 +++++ .github/workflows/base_reduced.yml.template | 5 +++++ .github/workflows/develop_install.yml | 5 +++++ .github/workflows/end_to_end.yml | 5 +++++ .github/workflows/examples_pytest.yml | 5 +++++ .github/workflows/finn_integration.yml | 5 +++++ .github/workflows/notebook.yml | 5 +++++ .github/workflows/ort_integration.yml | 5 +++++ .github/workflows/pytest.yml | 5 +++++ .github/workflows/reduced_develop_install.yml | 5 +++++ .github/workflows/reduced_end_to_end.yml | 5 +++++ .github/workflows/reduced_examples_pytest.yml | 5 +++++ .github/workflows/reduced_finn_integration.yml | 5 +++++ .github/workflows/reduced_notebook.yml | 5 +++++ .github/workflows/reduced_ort_integration.yml | 5 +++++ .github/workflows/reduced_pytest.yml | 5 +++++ 16 files changed, 80 insertions(+) diff --git a/.github/workflows/base.yml.template b/.github/workflows/base.yml.template index 554b9b6fc..bf296e597 100644 --- a/.github/workflows/base.yml.template +++ b/.github/workflows/base.yml.template @@ -31,6 +31,11 @@ jobs: shell: bash run: pip install -r requirements/requirements-nox.txt + - name: Install update + shell: bash + run: sudo apt-get update + if: startsWith(runner.os, 'Linux') == true + - name: Install libsndfile and libgomp1 on Ubuntu shell: bash run: sudo apt-get install -y libsndfile-dev libgomp1 diff --git a/.github/workflows/base_reduced.yml.template b/.github/workflows/base_reduced.yml.template index 28df2b259..c50903499 100644 --- a/.github/workflows/base_reduced.yml.template +++ b/.github/workflows/base_reduced.yml.template @@ -33,6 +33,11 @@ jobs: shell: bash run: pip install -r requirements/requirements-nox.txt + - name: Install update + shell: bash + run: sudo apt-get update + if: startsWith(runner.os, 'Linux') == true + - name: Install libsndfile and libgomp1 on Ubuntu shell: bash run: sudo apt-get install -y libsndfile-dev libgomp1 diff --git a/.github/workflows/develop_install.yml b/.github/workflows/develop_install.yml index 58bbcba1e..e2960140a 100644 --- a/.github/workflows/develop_install.yml +++ b/.github/workflows/develop_install.yml @@ -37,6 +37,11 @@ jobs: shell: bash run: pip install -r requirements/requirements-nox.txt + - name: Install update + shell: bash + run: sudo apt-get update + if: startsWith(runner.os, 'Linux') == true + - name: Install libsndfile and libgomp1 on Ubuntu shell: bash run: sudo apt-get install -y libsndfile-dev libgomp1 diff --git a/.github/workflows/end_to_end.yml b/.github/workflows/end_to_end.yml index 29cc884be..3313db99f 100644 --- a/.github/workflows/end_to_end.yml +++ b/.github/workflows/end_to_end.yml @@ -40,6 +40,11 @@ jobs: shell: bash run: pip install -r requirements/requirements-nox.txt + - name: Install update + shell: bash + run: sudo apt-get update + if: startsWith(runner.os, 'Linux') == true + - name: Install libsndfile and libgomp1 on Ubuntu shell: bash run: sudo apt-get install -y libsndfile-dev libgomp1 diff --git a/.github/workflows/examples_pytest.yml b/.github/workflows/examples_pytest.yml index fc7a6cd3c..40bb3b460 100644 --- a/.github/workflows/examples_pytest.yml +++ b/.github/workflows/examples_pytest.yml @@ -42,6 +42,11 @@ jobs: shell: bash run: pip install -r requirements/requirements-nox.txt + - name: Install update + shell: bash + run: sudo apt-get update + if: startsWith(runner.os, 'Linux') == true + - name: Install libsndfile and libgomp1 on Ubuntu shell: bash run: sudo apt-get install -y libsndfile-dev libgomp1 diff --git a/.github/workflows/finn_integration.yml b/.github/workflows/finn_integration.yml index 398f2120e..83c8f5bc9 100644 --- a/.github/workflows/finn_integration.yml +++ b/.github/workflows/finn_integration.yml @@ -37,6 +37,11 @@ jobs: shell: bash run: pip install -r requirements/requirements-nox.txt + - name: Install update + shell: bash + run: sudo apt-get update + if: startsWith(runner.os, 'Linux') == true + - name: Install libsndfile and libgomp1 on Ubuntu shell: bash run: sudo apt-get install -y libsndfile-dev libgomp1 diff --git a/.github/workflows/notebook.yml b/.github/workflows/notebook.yml index 097d8f9c0..799e99e1f 100644 --- a/.github/workflows/notebook.yml +++ b/.github/workflows/notebook.yml @@ -40,6 +40,11 @@ jobs: shell: bash run: pip install -r requirements/requirements-nox.txt + - name: Install update + shell: bash + run: sudo apt-get update + if: startsWith(runner.os, 'Linux') == true + - name: Install libsndfile and libgomp1 on Ubuntu shell: bash run: sudo apt-get install -y libsndfile-dev libgomp1 diff --git a/.github/workflows/ort_integration.yml b/.github/workflows/ort_integration.yml index 7b7e14b26..3def32a62 100644 --- a/.github/workflows/ort_integration.yml +++ b/.github/workflows/ort_integration.yml @@ -37,6 +37,11 @@ jobs: shell: bash run: pip install -r requirements/requirements-nox.txt + - name: Install update + shell: bash + run: sudo apt-get update + if: startsWith(runner.os, 'Linux') == true + - name: Install libsndfile and libgomp1 on Ubuntu shell: bash run: sudo apt-get install -y libsndfile-dev libgomp1 diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 66e5244e5..a2864259f 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -42,6 +42,11 @@ jobs: shell: bash run: pip install -r requirements/requirements-nox.txt + - name: Install update + shell: bash + run: sudo apt-get update + if: startsWith(runner.os, 'Linux') == true + - name: Install libsndfile and libgomp1 on Ubuntu shell: bash run: sudo apt-get install -y libsndfile-dev libgomp1 diff --git a/.github/workflows/reduced_develop_install.yml b/.github/workflows/reduced_develop_install.yml index cb5233872..e2640ab17 100644 --- a/.github/workflows/reduced_develop_install.yml +++ b/.github/workflows/reduced_develop_install.yml @@ -39,6 +39,11 @@ jobs: shell: bash run: pip install -r requirements/requirements-nox.txt + - name: Install update + shell: bash + run: sudo apt-get update + if: startsWith(runner.os, 'Linux') == true + - name: Install libsndfile and libgomp1 on Ubuntu shell: bash run: sudo apt-get install -y libsndfile-dev libgomp1 diff --git a/.github/workflows/reduced_end_to_end.yml b/.github/workflows/reduced_end_to_end.yml index 9ceb24c4e..af3ef3a4d 100644 --- a/.github/workflows/reduced_end_to_end.yml +++ b/.github/workflows/reduced_end_to_end.yml @@ -42,6 +42,11 @@ jobs: shell: bash run: pip install -r requirements/requirements-nox.txt + - name: Install update + shell: bash + run: sudo apt-get update + if: startsWith(runner.os, 'Linux') == true + - name: Install libsndfile and libgomp1 on Ubuntu shell: bash run: sudo apt-get install -y libsndfile-dev libgomp1 diff --git a/.github/workflows/reduced_examples_pytest.yml b/.github/workflows/reduced_examples_pytest.yml index 8e3fe5400..15441ffd0 100644 --- a/.github/workflows/reduced_examples_pytest.yml +++ b/.github/workflows/reduced_examples_pytest.yml @@ -40,6 +40,11 @@ jobs: shell: bash run: pip install -r requirements/requirements-nox.txt + - name: Install update + shell: bash + run: sudo apt-get update + if: startsWith(runner.os, 'Linux') == true + - name: Install libsndfile and libgomp1 on Ubuntu shell: bash run: sudo apt-get install -y libsndfile-dev libgomp1 diff --git a/.github/workflows/reduced_finn_integration.yml b/.github/workflows/reduced_finn_integration.yml index 3ec18e13f..eda43d79f 100644 --- a/.github/workflows/reduced_finn_integration.yml +++ b/.github/workflows/reduced_finn_integration.yml @@ -39,6 +39,11 @@ jobs: shell: bash run: pip install -r requirements/requirements-nox.txt + - name: Install update + shell: bash + run: sudo apt-get update + if: startsWith(runner.os, 'Linux') == true + - name: Install libsndfile and libgomp1 on Ubuntu shell: bash run: sudo apt-get install -y libsndfile-dev libgomp1 diff --git a/.github/workflows/reduced_notebook.yml b/.github/workflows/reduced_notebook.yml index f68c2d911..f53ba8244 100644 --- a/.github/workflows/reduced_notebook.yml +++ b/.github/workflows/reduced_notebook.yml @@ -42,6 +42,11 @@ jobs: shell: bash run: pip install -r requirements/requirements-nox.txt + - name: Install update + shell: bash + run: sudo apt-get update + if: startsWith(runner.os, 'Linux') == true + - name: Install libsndfile and libgomp1 on Ubuntu shell: bash run: sudo apt-get install -y libsndfile-dev libgomp1 diff --git a/.github/workflows/reduced_ort_integration.yml b/.github/workflows/reduced_ort_integration.yml index eebfeb511..e0eb0a655 100644 --- a/.github/workflows/reduced_ort_integration.yml +++ b/.github/workflows/reduced_ort_integration.yml @@ -39,6 +39,11 @@ jobs: shell: bash run: pip install -r requirements/requirements-nox.txt + - name: Install update + shell: bash + run: sudo apt-get update + if: startsWith(runner.os, 'Linux') == true + - name: Install libsndfile and libgomp1 on Ubuntu shell: bash run: sudo apt-get install -y libsndfile-dev libgomp1 diff --git a/.github/workflows/reduced_pytest.yml b/.github/workflows/reduced_pytest.yml index ef6f80183..19b1d31f2 100644 --- a/.github/workflows/reduced_pytest.yml +++ b/.github/workflows/reduced_pytest.yml @@ -40,6 +40,11 @@ jobs: shell: bash run: pip install -r requirements/requirements-nox.txt + - name: Install update + shell: bash + run: sudo apt-get update + if: startsWith(runner.os, 'Linux') == true + - name: Install libsndfile and libgomp1 on Ubuntu shell: bash run: sudo apt-get install -y libsndfile-dev libgomp1