Skip to content

Commit

Permalink
ci:oneapi: debug
Browse files Browse the repository at this point in the history
ci:oneapi: try no recommends to reduce install size
  • Loading branch information
scivision committed Dec 14, 2023
1 parent 7c47f71 commit 42c88ff
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/oneapi-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ jobs:
timeout-minutes: 10
run: |
sh -c .github/workflows/oneapi_setup_apt_repo_linux.sh
sudo apt install ${{ env.LINUX_CPP_COMPONENTS }} ${{ env.LINUX_FORTRAN_COMPONENTS }} ${{ env.LINUX_MPI_COMPONENTS }}
sudo apt install --no-install-recommends ${{ env.LINUX_CPP_COMPONENTS }}
# ${{ env.LINUX_FORTRAN_COMPONENTS }} ${{ env.LINUX_MPI_COMPONENTS }}

- name: Setup Intel oneAPI environment
run: |
Expand All @@ -53,6 +55,9 @@ jobs:
- name: print env
run: printenv

- name: ls compiler dir
run: ls /opt/intel/oneapi/compiler/

- name: install Ninja
run: sudo apt install ninja-build
# install ninja needs to be own step as not cached by design
Expand Down

0 comments on commit 42c88ff

Please # to comment.