Skip to content

Commit

Permalink
fix: pacman -Syu
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Jan 31, 2024
1 parent 197b2d3 commit 85d2f56
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/install-dependency-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ case $runner in
pacman -Syu --noconfirm
for pkg in ${PACKAGE_LIST_LINUX[@]}; do
echo "[+] INSTALLING $pkg"
pacman -Syu --noconfirm $pkg
pacman -S --noconfirm $pkg
echo "| \`$pkg\` | $(pacman -Qi $pkg | grep -Po '^Version\s*: \K.+') |" >> $summary_file
done
;;
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,10 @@ jobs:
image: ${{ inputs.container }}
steps:
- name: install cmake
run: pacman -S --noconfirm cmake
if: ${{ inputs.runner == 'ubuntu-latest' }}
run: |
pacman -Syu --noconfirm
pacman -S --noconfirm cmake
- name: checkout hipo
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 85d2f56

Please sign in to comment.