Skip to content

Commit

Permalink
Run apt update
Browse files Browse the repository at this point in the history
  • Loading branch information
thetic committed Jan 12, 2023
1 parent c2c9960 commit 90dd1c6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/basic.yml
Expand Up @@ -265,7 +265,9 @@ jobs:
### SETUP

- name: Install packages
run: sudo apt install -y ${{ matrix.apt_packages }}
run: |
sudo apt-get update
sudo apt-get install -y ${{ matrix.apt_packages }}
if: ${{ matrix.apt_packages }}

- uses: carlosperate/arm-none-eabi-gcc-action@v1
Expand Down Expand Up @@ -404,6 +406,7 @@ jobs:
uses: actions/checkout@main
- name: Install tools
run: |
sudo apt-get update
sudo apt-get install -y dosbox
git clone https://github.com/cpputest/watcom-compiler.git $WATCOM
echo "$WATCOM/binl" >> $GITHUB_PATH
Expand Down

0 comments on commit 90dd1c6

Please sign in to comment.