Skip to content

Commit

Permalink
Update ci.rst (#3056)
Browse files Browse the repository at this point in the history
##### SUMMARY
Docker is already installed in GitHub Actions ubuntu-latest environment (see https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu1804-README.md). An extra `sudo apt install docker` as suggested in the current docs leads to the following error `Unable to locate an executable at "/Library/Java/JavaVirtualMachines/adoptopenjdk-14.jdk/Contents/Home/bin/apt" (-1)` (see this build https://github.com/jonashackt/molecule-ansible-docker-aws/runs/1970452140?check_suite_focus=true). So we can safely remove the command to install docker.


##### ISSUE TYPE
- Docs Pull Request

+label: docsite_pr
  • Loading branch information
jonashackt authored Mar 5, 2021
1 parent 2b6293d commit 692c3c2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion docs/ci.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ and run ``molecule test`` in ubuntu.
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt install docker
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
- name: Test with molecule
Expand Down

0 comments on commit 692c3c2

Please sign in to comment.