From 7be17cbe2d479940af67d9946cf168a99c832ab8 Mon Sep 17 00:00:00 2001 From: Daniel Himmelstein Date: Mon, 16 Oct 2023 16:17:34 -0400 Subject: [PATCH] actions: install gcc needed for lsm-db install, which is an nxontology-ml dependency https://github.com/related-sciences/nxontology-data/actions/runs/6538321123/job/17754033251#step:3:16913 --- .github/actions/setup/action.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions/setup/action.yaml b/.github/actions/setup/action.yaml index a171c8b..ef00129 100644 --- a/.github/actions/setup/action.yaml +++ b/.github/actions/setup/action.yaml @@ -3,6 +3,10 @@ description: "Abstract common workflow steps for setting up application dependen runs: using: "composite" steps: + - name: Install GCC + # Installing lsm-db failed with `command 'gcc' failed: No such file or directory` + shell: bash + run: sudo apt-get install gcc - name: Set up Python uses: actions/setup-python@v4 with: