mirror of
https://github.com/docker/setup-docker-action.git
synced 2025-06-08 12:50:40 +02:00
Compare commits
No commits in common. "master" and "v2" have entirely different histories.
1
.github/CODEOWNERS
vendored
Normal file
1
.github/CODEOWNERS
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
* @crazy-max
|
3
.github/CODE_OF_CONDUCT.md
vendored
3
.github/CODE_OF_CONDUCT.md
vendored
@ -1,3 +0,0 @@
|
|||||||
# Code of conduct
|
|
||||||
|
|
||||||
- [Moby community guidelines](https://github.com/moby/moby/blob/master/CONTRIBUTING.md#moby-community-guidelines)
|
|
4
.github/CONTRIBUTING.md
vendored
4
.github/CONTRIBUTING.md
vendored
@ -7,13 +7,13 @@ to the public under the [project's open source license](LICENSE).
|
|||||||
|
|
||||||
## Submitting a pull request
|
## Submitting a pull request
|
||||||
|
|
||||||
1. [Fork](https://github.com/docker/setup-docker-action/fork) and clone the repository
|
1. [Fork](https://github.com/crazy-max/ghaction-setup-docker/fork) and clone the repository
|
||||||
2. Configure and install the dependencies: `yarn install`
|
2. Configure and install the dependencies: `yarn install`
|
||||||
3. Create a new branch: `git checkout -b my-branch-name`
|
3. Create a new branch: `git checkout -b my-branch-name`
|
||||||
4. Make your changes
|
4. Make your changes
|
||||||
5. Format code and build javascript artifacts: `docker buildx bake pre-checkin`
|
5. Format code and build javascript artifacts: `docker buildx bake pre-checkin`
|
||||||
6. Validate all code has correctly formatted and built: `docker buildx bake validate`
|
6. Validate all code has correctly formatted and built: `docker buildx bake validate`
|
||||||
7. Push to your fork and [submit a pull request](https://github.com/docker/setup-docker-action/compare)
|
7. Push to your fork and [submit a pull request](https://github.com/crazy-max/ghaction-setup-docker/compare)
|
||||||
8. Pat your self on the back and wait for your pull request to be reviewed and merged.
|
8. Pat your self on the back and wait for your pull request to be reviewed and merged.
|
||||||
|
|
||||||
Here are a few things you can do that will increase the likelihood of your pull request being accepted:
|
Here are a few things you can do that will increase the likelihood of your pull request being accepted:
|
||||||
|
102
.github/ISSUE_TEMPLATE/bug.yml
vendored
102
.github/ISSUE_TEMPLATE/bug.yml
vendored
@ -1,102 +0,0 @@
|
|||||||
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema
|
|
||||||
name: Bug Report
|
|
||||||
description: Report a bug
|
|
||||||
labels:
|
|
||||||
- status/triage
|
|
||||||
|
|
||||||
body:
|
|
||||||
- type: markdown
|
|
||||||
attributes:
|
|
||||||
value: |
|
|
||||||
Thank you for taking the time to report a bug!
|
|
||||||
If this is a security issue please report it to the [Docker Security team](mailto:security@docker.com).
|
|
||||||
Before submitting a bug report, check out the [Troubleshooting doc](https://github.com/docker/setup-docker-action/blob/master/TROUBLESHOOTING.md).
|
|
||||||
|
|
||||||
- type: checkboxes
|
|
||||||
attributes:
|
|
||||||
label: Contributing guidelines
|
|
||||||
description: >
|
|
||||||
Make sure you've read the contributing guidelines before proceeding.
|
|
||||||
options:
|
|
||||||
- label: I've read the [contributing guidelines](https://github.com/docker/setup-docker-action/blob/master/.github/CONTRIBUTING.md) and wholeheartedly agree
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: checkboxes
|
|
||||||
attributes:
|
|
||||||
label: "I've found a bug, and:"
|
|
||||||
description: |
|
|
||||||
Make sure that your request fulfills all of the following requirements.
|
|
||||||
If one requirement cannot be satisfied, explain in detail why.
|
|
||||||
options:
|
|
||||||
- label: The documentation does not mention anything about my problem
|
|
||||||
- label: There are no open or closed issues that are related to my problem
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
attributes:
|
|
||||||
label: Description
|
|
||||||
description: >
|
|
||||||
Provide a brief description of the bug in 1-2 sentences.
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
attributes:
|
|
||||||
label: Expected behaviour
|
|
||||||
description: >
|
|
||||||
Describe precisely what you'd expect to happen.
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
attributes:
|
|
||||||
label: Actual behaviour
|
|
||||||
description: >
|
|
||||||
Describe precisely what is actually happening.
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: input
|
|
||||||
attributes:
|
|
||||||
label: Repository URL
|
|
||||||
description: >
|
|
||||||
Enter the URL of the repository where you are experiencing the
|
|
||||||
issue. If your repository is private, provide a link to a minimal
|
|
||||||
repository that reproduces the issue.
|
|
||||||
|
|
||||||
- type: input
|
|
||||||
attributes:
|
|
||||||
label: Workflow run URL
|
|
||||||
description: >
|
|
||||||
Enter the URL of the GitHub Action workflow run if public (e.g.
|
|
||||||
`https://github.com/<user>/<repo>/actions/runs/<id>`)
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
attributes:
|
|
||||||
label: YAML workflow
|
|
||||||
description: |
|
|
||||||
Provide the YAML of the workflow that's causing the issue.
|
|
||||||
Make sure to remove any sensitive information.
|
|
||||||
render: yaml
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
attributes:
|
|
||||||
label: Workflow logs
|
|
||||||
description: >
|
|
||||||
[Attach](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/attaching-files)
|
|
||||||
the [log file of your workflow run](https://docs.github.com/en/actions/managing-workflow-runs/using-workflow-run-logs#downloading-logs)
|
|
||||||
and make sure to remove any sensitive information.
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
attributes:
|
|
||||||
label: Docker daemon logs
|
|
||||||
description: >
|
|
||||||
If applicable, provide the Docker logs available in post step.
|
|
||||||
render: text
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
attributes:
|
|
||||||
label: Additional info
|
|
||||||
description: |
|
|
||||||
Provide any additional information that could be useful.
|
|
34
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
34
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
---
|
||||||
|
name: Bug report
|
||||||
|
about: Create a report to help us improve
|
||||||
|
---
|
||||||
|
|
||||||
|
### Behaviour
|
||||||
|
|
||||||
|
#### Steps to reproduce this issue
|
||||||
|
|
||||||
|
1.
|
||||||
|
2.
|
||||||
|
3.
|
||||||
|
|
||||||
|
#### Expected behaviour
|
||||||
|
|
||||||
|
> Tell us what should happen
|
||||||
|
|
||||||
|
#### Actual behaviour
|
||||||
|
|
||||||
|
> Tell us what happens instead
|
||||||
|
|
||||||
|
### Configuration
|
||||||
|
|
||||||
|
* Repository URL (if public):
|
||||||
|
* Build URL (if public):
|
||||||
|
|
||||||
|
```yml
|
||||||
|
# paste your YAML workflow file here and remove sensitive data
|
||||||
|
```
|
||||||
|
|
||||||
|
### Logs
|
||||||
|
|
||||||
|
> Download the [log file of your build](https://docs.github.com/en/actions/managing-workflow-runs/using-workflow-run-logs#downloading-logs)
|
||||||
|
> and [attach it](https://docs.github.com/en/github/managing-your-work-on-github/file-attachments-on-issues-and-pull-requests) to this issue.
|
6
.github/ISSUE_TEMPLATE/config.yml
vendored
6
.github/ISSUE_TEMPLATE/config.yml
vendored
@ -1,6 +0,0 @@
|
|||||||
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#configuring-the-template-chooser
|
|
||||||
blank_issues_enabled: true
|
|
||||||
contact_links:
|
|
||||||
- name: Questions and Discussions
|
|
||||||
url: https://github.com/docker/setup-docker-action/discussions/new
|
|
||||||
about: Use Github Discussions to ask questions and/or open discussion topics.
|
|
15
.github/ISSUE_TEMPLATE/feature.yml
vendored
15
.github/ISSUE_TEMPLATE/feature.yml
vendored
@ -1,15 +0,0 @@
|
|||||||
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema
|
|
||||||
name: Feature request
|
|
||||||
description: Missing functionality? Come tell us about it!
|
|
||||||
labels:
|
|
||||||
- kind/enhancement
|
|
||||||
- status/triage
|
|
||||||
|
|
||||||
body:
|
|
||||||
- type: textarea
|
|
||||||
id: description
|
|
||||||
attributes:
|
|
||||||
label: Description
|
|
||||||
description: What is the feature you want to see?
|
|
||||||
validations:
|
|
||||||
required: true
|
|
12
.github/SECURITY.md
vendored
12
.github/SECURITY.md
vendored
@ -1,12 +0,0 @@
|
|||||||
# Reporting security issues
|
|
||||||
|
|
||||||
The project maintainers take security seriously. If you discover a security
|
|
||||||
issue, please bring it to their attention right away!
|
|
||||||
|
|
||||||
**Please _DO NOT_ file a public issue**, instead send your report privately to
|
|
||||||
[security@docker.com](mailto:security@docker.com).
|
|
||||||
|
|
||||||
Security reports are greatly appreciated, and we will publicly thank you for it.
|
|
||||||
We also like to send gifts—if you'd like Docker swag, make sure to let
|
|
||||||
us know. We currently do not offer a paid security bounty program, but are not
|
|
||||||
ruling it out in the future.
|
|
31
.github/SUPPORT.md
vendored
Normal file
31
.github/SUPPORT.md
vendored
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
# Support [](https://isitmaintained.com/project/crazy-max/ghaction-setup-docker)
|
||||||
|
|
||||||
|
First, [be a good guy](https://github.com/kossnocorp/etiquette/blob/master/README.md).
|
||||||
|
|
||||||
|
## Reporting an issue
|
||||||
|
|
||||||
|
Please do a search in [open issues](https://github.com/crazy-max/ghaction-setup-docker/issues?utf8=%E2%9C%93&q=) to see if the issue or feature request has already been filed.
|
||||||
|
|
||||||
|
If you find your issue already exists, make relevant comments and add your [reaction](https://github.com/blog/2119-add-reactions-to-pull-requests-issues-and-comments). Use a reaction in place of a "+1" comment.
|
||||||
|
|
||||||
|
:+1: - upvote
|
||||||
|
|
||||||
|
:-1: - downvote
|
||||||
|
|
||||||
|
If you cannot find an existing issue that describes your bug or feature, submit an issue using the guidelines below.
|
||||||
|
|
||||||
|
## Writing good bug reports and feature requests
|
||||||
|
|
||||||
|
File a single issue per problem and feature request.
|
||||||
|
|
||||||
|
* Do not enumerate multiple bugs or feature requests in the same issue.
|
||||||
|
* Do not add your issue as a comment to an existing issue unless it's for the identical input. Many issues look similar, but have different causes.
|
||||||
|
|
||||||
|
The more information you can provide, the more likely someone will be successful reproducing the issue and finding a fix.
|
||||||
|
|
||||||
|
You are now ready to [create a new issue](https://github.com/crazy-max/ghaction-setup-docker/issues/new/choose)!
|
||||||
|
|
||||||
|
## Closure policy
|
||||||
|
|
||||||
|
* Issues that don't have the information requested above (when applicable) will be closed immediately and the poster directed to the support guidelines.
|
||||||
|
* Issues that go a week without a response from original poster are subject to closure at our discretion.
|
5
.github/dependabot.yml
vendored
5
.github/dependabot.yml
vendored
@ -4,11 +4,6 @@ updates:
|
|||||||
directory: "/"
|
directory: "/"
|
||||||
schedule:
|
schedule:
|
||||||
interval: "daily"
|
interval: "daily"
|
||||||
ignore:
|
|
||||||
# ignore this dependency
|
|
||||||
# it seems a bug with dependabot as pining to commit sha should not
|
|
||||||
# trigger a new version similar to https://github.com/docker/buildx/pull/2222#issuecomment-1919092153
|
|
||||||
- dependency-name: "docker/actions-toolkit"
|
|
||||||
labels:
|
labels:
|
||||||
- "dependencies"
|
- "dependencies"
|
||||||
- "bot"
|
- "bot"
|
||||||
|
178
.github/workflows/ci.yml
vendored
178
.github/workflows/ci.yml
vendored
@ -1,9 +1,5 @@
|
|||||||
name: ci
|
name: ci
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
@ -17,8 +13,7 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
DOCKER_VERSION: v27.3.1
|
DOCKER_VERSION: v23.0.6
|
||||||
DOCKER_BUILD_SUMMARY: false
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
main:
|
main:
|
||||||
@ -28,23 +23,32 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
os:
|
os:
|
||||||
- ubuntu-latest
|
- ubuntu-latest
|
||||||
- ubuntu-24.04-arm
|
|
||||||
#- macos-14 # no virt: https://github.com/docker/actions-toolkit/issues/317
|
|
||||||
- macos-13
|
- macos-13
|
||||||
|
- macos-latest
|
||||||
- windows-latest
|
- windows-latest
|
||||||
version:
|
version:
|
||||||
- ""
|
- pinned
|
||||||
- v27.3.1
|
- latest
|
||||||
- type=image,tag=27.3.1
|
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
-
|
||||||
|
name: Set version
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
if [ "${{ matrix.version }}" != "pinned" ]; then
|
||||||
|
echo "DOCKER_VERSION=${{ matrix.version }}" >> $GITHUB_ENV
|
||||||
|
fi
|
||||||
-
|
-
|
||||||
name: Set up Docker
|
name: Set up Docker
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
version: ${{ matrix.version }}
|
version: ${{ env.DOCKER_VERSION }}
|
||||||
|
-
|
||||||
|
name: Dump context
|
||||||
|
if: always()
|
||||||
|
uses: crazy-max/ghaction-dump-context@v2
|
||||||
|
|
||||||
channel:
|
channel:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
@ -53,9 +57,7 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
os:
|
os:
|
||||||
- ubuntu-latest
|
- ubuntu-latest
|
||||||
- ubuntu-24.04-arm
|
- macos-latest
|
||||||
#- macos-14 # no virt: https://github.com/docker/actions-toolkit/issues/317
|
|
||||||
- macos-13
|
|
||||||
- windows-latest
|
- windows-latest
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
@ -65,8 +67,12 @@ jobs:
|
|||||||
name: Set up Docker
|
name: Set up Docker
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
version: ${{ env.DOCKER_VERSION }}
|
version: v23.0.0-rc.4
|
||||||
channel: test
|
channel: test
|
||||||
|
-
|
||||||
|
name: Dump context
|
||||||
|
if: always()
|
||||||
|
uses: crazy-max/ghaction-dump-context@v2
|
||||||
|
|
||||||
daemon-config:
|
daemon-config:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
@ -75,9 +81,7 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
os:
|
os:
|
||||||
- ubuntu-latest
|
- ubuntu-latest
|
||||||
- ubuntu-24.04-arm
|
- macos-latest
|
||||||
#- macos-14 # no virt: https://github.com/docker/actions-toolkit/issues/317
|
|
||||||
- macos-13
|
|
||||||
- windows-latest
|
- windows-latest
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
@ -87,7 +91,6 @@ jobs:
|
|||||||
name: Set up Docker
|
name: Set up Docker
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
version: ${{ env.DOCKER_VERSION }}
|
|
||||||
daemon-config: |
|
daemon-config: |
|
||||||
{
|
{
|
||||||
"debug": true,
|
"debug": true,
|
||||||
@ -95,6 +98,10 @@ jobs:
|
|||||||
"containerd-snapshotter": true
|
"containerd-snapshotter": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
-
|
||||||
|
name: Dump context
|
||||||
|
if: always()
|
||||||
|
uses: crazy-max/ghaction-dump-context@v2
|
||||||
|
|
||||||
context:
|
context:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
@ -103,9 +110,7 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
os:
|
os:
|
||||||
- ubuntu-latest
|
- ubuntu-latest
|
||||||
- ubuntu-24.04-arm
|
- macos-latest
|
||||||
#- macos-14 # no virt: https://github.com/docker/actions-toolkit/issues/317
|
|
||||||
- macos-13
|
|
||||||
- windows-latest
|
- windows-latest
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
@ -121,10 +126,13 @@ jobs:
|
|||||||
name: Check context
|
name: Check context
|
||||||
run: |
|
run: |
|
||||||
docker context inspect foo
|
docker context inspect foo
|
||||||
|
-
|
||||||
|
name: Dump context
|
||||||
|
if: always()
|
||||||
|
uses: crazy-max/ghaction-dump-context@v2
|
||||||
|
|
||||||
lima-start-args:
|
colima-start-args:
|
||||||
#runs-on: macos-14 # no virt: https://github.com/docker/actions-toolkit/issues/317
|
runs-on: macos-latest
|
||||||
runs-on: macos-13
|
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
@ -132,28 +140,15 @@ jobs:
|
|||||||
-
|
-
|
||||||
name: Set up Docker
|
name: Set up Docker
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
|
||||||
version: ${{ env.DOCKER_VERSION }}
|
|
||||||
env:
|
env:
|
||||||
LIMA_START_ARGS: --cpus 4 --memory 8
|
COLIMA_START_ARGS: --cpu 4 --memory 8 --disk 32 --dns 1.1.1.1 --dns 8.8.8.8 --dns-host example.com=1.2.3.4
|
||||||
|
|
||||||
build-linux:
|
build-linux:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
containerd:
|
|
||||||
- containerd-system
|
|
||||||
- containerd-tarball
|
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
-
|
|
||||||
name: Uninstall containerd
|
|
||||||
if: matrix.containerd == 'containerd-tarball'
|
|
||||||
run: |
|
|
||||||
sudo apt-get remove -y containerd.io
|
|
||||||
-
|
-
|
||||||
name: Set up Docker
|
name: Set up Docker
|
||||||
uses: ./
|
uses: ./
|
||||||
@ -171,7 +166,7 @@ jobs:
|
|||||||
driver-opts: network=host
|
driver-opts: network=host
|
||||||
-
|
-
|
||||||
name: Build and push
|
name: Build and push
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: ./test
|
context: ./test
|
||||||
push: true
|
push: true
|
||||||
@ -181,6 +176,10 @@ jobs:
|
|||||||
name: Inspect
|
name: Inspect
|
||||||
run: |
|
run: |
|
||||||
docker buildx imagetools inspect localhost:5000/name/app:latest --format '{{json .}}'
|
docker buildx imagetools inspect localhost:5000/name/app:latest --format '{{json .}}'
|
||||||
|
-
|
||||||
|
name: Dump context
|
||||||
|
if: always()
|
||||||
|
uses: crazy-max/ghaction-dump-context@v2
|
||||||
|
|
||||||
build-macos:
|
build-macos:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
@ -188,8 +187,8 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os:
|
os:
|
||||||
#- macos-14 # no virt: https://github.com/docker/actions-toolkit/issues/317
|
|
||||||
- macos-13
|
- macos-13
|
||||||
|
- macos-latest
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
@ -211,7 +210,7 @@ jobs:
|
|||||||
driver-opts: network=host
|
driver-opts: network=host
|
||||||
-
|
-
|
||||||
name: Build and push
|
name: Build and push
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: ./test
|
context: ./test
|
||||||
push: true
|
push: true
|
||||||
@ -221,6 +220,10 @@ jobs:
|
|||||||
name: Inspect
|
name: Inspect
|
||||||
run: |
|
run: |
|
||||||
docker buildx imagetools inspect localhost:5000/name/app:latest --format '{{json .}}'
|
docker buildx imagetools inspect localhost:5000/name/app:latest --format '{{json .}}'
|
||||||
|
-
|
||||||
|
name: Dump context
|
||||||
|
if: always()
|
||||||
|
uses: crazy-max/ghaction-dump-context@v2
|
||||||
|
|
||||||
build-windows:
|
build-windows:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
@ -242,90 +245,7 @@ jobs:
|
|||||||
name: Inspect
|
name: Inspect
|
||||||
run: |
|
run: |
|
||||||
docker image inspect test
|
docker image inspect test
|
||||||
|
|
||||||
set-host:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Dump context
|
||||||
uses: actions/checkout@v4
|
if: always()
|
||||||
-
|
uses: crazy-max/ghaction-dump-context@v2
|
||||||
name: Set up Docker
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
version: ${{ env.DOCKER_VERSION }}
|
|
||||||
set-host: true
|
|
||||||
-
|
|
||||||
name: List contexts
|
|
||||||
run: |
|
|
||||||
docker context ls
|
|
||||||
|
|
||||||
rootless:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
-
|
|
||||||
name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
-
|
|
||||||
name: Set up Docker
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
version: ${{ env.DOCKER_VERSION }}
|
|
||||||
rootless: true
|
|
||||||
-
|
|
||||||
name: List contexts
|
|
||||||
run: |
|
|
||||||
docker context ls
|
|
||||||
|
|
||||||
tcp:
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
os:
|
|
||||||
- ubuntu-latest
|
|
||||||
- ubuntu-24.04-arm
|
|
||||||
#- macos-14 # no virt: https://github.com/docker/actions-toolkit/issues/317
|
|
||||||
- macos-13
|
|
||||||
- windows-latest
|
|
||||||
steps:
|
|
||||||
-
|
|
||||||
name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
-
|
|
||||||
name: Set up Docker
|
|
||||||
id: setup_docker
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
version: ${{ env.DOCKER_VERSION }}
|
|
||||||
tcp-port: 2378
|
|
||||||
-
|
|
||||||
name: Check docker info through TCP
|
|
||||||
run: |
|
|
||||||
docker info
|
|
||||||
env:
|
|
||||||
DOCKER_HOST: ${{ steps.setup_docker.outputs.tcp }}
|
|
||||||
|
|
||||||
undock-regctl-version:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
undock_version:
|
|
||||||
- ''
|
|
||||||
- v0.9.0
|
|
||||||
regctl_version:
|
|
||||||
- ''
|
|
||||||
- v0.8.2
|
|
||||||
steps:
|
|
||||||
-
|
|
||||||
name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
-
|
|
||||||
name: Set up Docker
|
|
||||||
uses: ./
|
|
||||||
with:
|
|
||||||
version: type=image
|
|
||||||
env:
|
|
||||||
UNDOCK_VERSION: ${{ matrix.undock_version }}
|
|
||||||
REGCTL_VERSION: ${{ matrix.regctl_version }}
|
|
||||||
|
17
.github/workflows/pr-assign-author.yml
vendored
17
.github/workflows/pr-assign-author.yml
vendored
@ -1,17 +0,0 @@
|
|||||||
name: pr-assign-author
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request_target:
|
|
||||||
types:
|
|
||||||
- opened
|
|
||||||
- reopened
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
run:
|
|
||||||
uses: crazy-max/.github/.github/workflows/pr-assign-author.yml@1b673f36fad86812f538c1df9794904038a23cbf
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
pull-requests: write
|
|
21
.github/workflows/publish.yml
vendored
21
.github/workflows/publish.yml
vendored
@ -1,21 +0,0 @@
|
|||||||
name: publish
|
|
||||||
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types:
|
|
||||||
- published
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
publish:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
id-token: write
|
|
||||||
packages: write
|
|
||||||
steps:
|
|
||||||
-
|
|
||||||
name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
-
|
|
||||||
name: Publish
|
|
||||||
uses: actions/publish-immutable-action@v0.0.4
|
|
12
.github/workflows/test.yml
vendored
12
.github/workflows/test.yml
vendored
@ -1,9 +1,5 @@
|
|||||||
name: test
|
name: test
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
@ -20,13 +16,11 @@ jobs:
|
|||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
-
|
-
|
||||||
name: Test
|
name: Test
|
||||||
uses: docker/bake-action@v6
|
uses: docker/bake-action@v4
|
||||||
with:
|
with:
|
||||||
targets: test
|
targets: test
|
||||||
-
|
-
|
||||||
name: Upload coverage
|
name: Upload coverage
|
||||||
uses: codecov/codecov-action@v5
|
uses: codecov/codecov-action@v3
|
||||||
with:
|
with:
|
||||||
source: .
|
file: ./coverage/clover.xml
|
||||||
files: ./coverage/clover.xml
|
|
||||||
token: ${{ secrets.CODECOV_TOKEN }}
|
|
||||||
|
20
.github/workflows/validate.yml
vendored
20
.github/workflows/validate.yml
vendored
@ -1,9 +1,5 @@
|
|||||||
name: validate
|
name: validate
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
@ -15,17 +11,16 @@ jobs:
|
|||||||
prepare:
|
prepare:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
outputs:
|
outputs:
|
||||||
targets: ${{ steps.generate.outputs.targets }}
|
targets: ${{ steps.targets.outputs.matrix }}
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
-
|
-
|
||||||
name: List targets
|
name: Targets matrix
|
||||||
id: generate
|
id: targets
|
||||||
uses: docker/bake-action/subaction/list-targets@v6
|
run: |
|
||||||
with:
|
echo "matrix=$(docker buildx bake validate --print | jq -cr '.group.validate.targets')" >> $GITHUB_OUTPUT
|
||||||
target: validate
|
|
||||||
|
|
||||||
validate:
|
validate:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -36,8 +31,11 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
target: ${{ fromJson(needs.prepare.outputs.targets) }}
|
target: ${{ fromJson(needs.prepare.outputs.targets) }}
|
||||||
steps:
|
steps:
|
||||||
|
-
|
||||||
|
name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
-
|
-
|
||||||
name: Validate
|
name: Validate
|
||||||
uses: docker/bake-action@v6
|
uses: docker/bake-action@v4
|
||||||
with:
|
with:
|
||||||
targets: ${{ matrix.target }}
|
targets: ${{ matrix.target }}
|
||||||
|
874
.yarn/releases/yarn-3.6.3.cjs
vendored
Normal file
874
.yarn/releases/yarn-3.6.3.cjs
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -11,3 +11,5 @@ nodeLinker: node-modules
|
|||||||
plugins:
|
plugins:
|
||||||
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
|
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
|
||||||
spec: "@yarnpkg/plugin-interactive-tools"
|
spec: "@yarnpkg/plugin-interactive-tools"
|
||||||
|
|
||||||
|
yarnPath: .yarn/releases/yarn-3.6.3.cjs
|
||||||
|
130
README.md
130
README.md
@ -1,26 +1,14 @@
|
|||||||
[](https://github.com/docker/setup-docker-action/releases/latest)
|
[](https://github.com/crazy-max/ghaction-setup-docker/releases/latest)
|
||||||
[](https://github.com/marketplace/actions/docker-setup-docker)
|
[](https://github.com/marketplace/actions/docker-setup-docker)
|
||||||
[](https://github.com/docker/setup-docker-action/actions?workflow=ci)
|
[](https://github.com/crazy-max/ghaction-setup-docker/actions?workflow=ci)
|
||||||
[](https://github.com/docker/setup-docker-action/actions?workflow=test)
|
[](https://github.com/crazy-max/ghaction-setup-docker/actions?workflow=test)
|
||||||
[](https://codecov.io/gh/docker/setup-docker-action)
|
[](https://codecov.io/gh/crazy-max/ghaction-setup-docker)
|
||||||
|
|
||||||
## About
|
## About
|
||||||
|
|
||||||
GitHub Action to set up (download and install) [Docker CE](https://docs.docker.com/engine/).
|
GitHub Action to set up (download and install) [Docker CE](https://docs.docker.com/engine/).
|
||||||
Works on Linux, macOS and Windows.
|
Works on Linux, macOS and Windows.
|
||||||
|
|
||||||
> [!NOTE]
|
|
||||||
> This action is useful if you want to pin against a specific Docker version or
|
|
||||||
> set up a custom daemon configuration or if Docker is not available on your
|
|
||||||
> runner. If you're using [GitHub-hosted runners](https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources)
|
|
||||||
> on Linux or Windows, Docker is already up and running, so it might not be
|
|
||||||
> necessary to use this action.
|
|
||||||
|
|
||||||
> [!WARNING]
|
|
||||||
> Does not work on macOS runners with ARM architecture (no nested virtualization):
|
|
||||||
> * https://github.com/crazy-max/ghaction-setup-docker/pull/53
|
|
||||||
> * https://github.com/docker/actions-toolkit/issues/317
|
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
___
|
___
|
||||||
@ -28,11 +16,9 @@ ___
|
|||||||
* [Usage](#usage)
|
* [Usage](#usage)
|
||||||
* [Quick start](#quick-start)
|
* [Quick start](#quick-start)
|
||||||
* [Daemon configuration](#daemon-configuration)
|
* [Daemon configuration](#daemon-configuration)
|
||||||
* [Define custom `limactl start` arguments (macOS)](#define-custom-limactl-start-arguments-macos)
|
* [Define custom `colima start` arguments (macOS)](#define-custom-colima-start-arguments-macos)
|
||||||
* [Customizing](#customizing)
|
* [Customizing](#customizing)
|
||||||
* [inputs](#inputs)
|
* [inputs](#inputs)
|
||||||
* [inputs.version](#inputsversion)
|
|
||||||
* [outputs](#outputs)
|
|
||||||
* [Contributing](#contributing)
|
* [Contributing](#contributing)
|
||||||
* [License](#license)
|
* [License](#license)
|
||||||
|
|
||||||
@ -52,7 +38,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Set up Docker
|
name: Set up Docker
|
||||||
uses: docker/setup-docker-action@v4
|
uses: crazy-max/ghaction-setup-docker@v2
|
||||||
```
|
```
|
||||||
|
|
||||||
### Daemon configuration
|
### Daemon configuration
|
||||||
@ -74,7 +60,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Set up Docker
|
name: Set up Docker
|
||||||
uses: docker/setup-docker-action@v4
|
uses: crazy-max/ghaction-setup-docker@v2
|
||||||
with:
|
with:
|
||||||
daemon-config: |
|
daemon-config: |
|
||||||
{
|
{
|
||||||
@ -85,10 +71,10 @@ jobs:
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
### Define custom `limactl start` arguments (macOS)
|
### Define custom `colima start` arguments (macOS)
|
||||||
|
|
||||||
You can define custom [`limactl start` arguments](https://lima-vm.io/docs/reference/limactl_start/)
|
You can define custom [`colima start` arguments](https://github.com/abiosoft/colima#customizing-the-vm)
|
||||||
using the `LIMA_START_ARGS` environment variable to customize the VM:
|
using the `COLIMA_START_ARGS` environment variable to customize the VM:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
name: ci
|
name: ci
|
||||||
@ -102,106 +88,32 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Set up Docker
|
name: Set up Docker
|
||||||
uses: docker/setup-docker-action@v4
|
uses: crazy-max/ghaction-setup-docker@v2
|
||||||
env:
|
env:
|
||||||
LIMA_START_ARGS: --cpus 4 --memory 8
|
COLIMA_START_ARGS: --cpu 4 --memory 8 --disk 32
|
||||||
```
|
```
|
||||||
|
|
||||||
## Customizing
|
## Customizing
|
||||||
|
|
||||||
### inputs
|
### inputs
|
||||||
|
|
||||||
The following inputs can be used as `step.with` keys
|
Following inputs can be used as `step.with` keys
|
||||||
|
|
||||||
| Name | Type | Default | Description |
|
| Name | Type | Default | Description |
|
||||||
|-----------------|--------|-----------------------|-----------------------------------------------------------------------------------------------------------------------------|
|
|-----------------|--------|-----------------------|-----------------------------------------------------------------------------------------------------------------------------|
|
||||||
| `version` | String | `latest` | Docker version to use. See [inputs.version](#inputs.version). |
|
| `version` | String | `latest` | Docker CE version (e.g., `v24.0.6`). |
|
||||||
| `channel` | String | `stable` | Docker CE [channel](https://download.docker.com/linux/static/) (`stable` or `test`). Only applicable to `type=archive` |
|
| `channel` | String | `stable` | Docker CE [channel](https://download.docker.com/linux/static/) (e.g, `stable`, `edge` or `test`). |
|
||||||
| `daemon-config` | String | | [Docker daemon JSON configuration](https://docs.docker.com/engine/reference/commandline/dockerd/#daemon-configuration-file) |
|
| `daemon-config` | String | | [Docker daemon JSON configuration](https://docs.docker.com/engine/reference/commandline/dockerd/#daemon-configuration-file) |
|
||||||
| `tcp-port` | Number | | TCP port to expose the Docker API locally |
|
|
||||||
| `context` | String | `setup-docker-action` | Docker context name. |
|
| `context` | String | `setup-docker-action` | Docker context name. |
|
||||||
| `set-host` | Bool | `false` | Set `DOCKER_HOST` environment variable to docker socket path. |
|
|
||||||
| `rootless` | Bool | `false` | Start daemon in rootless mode |
|
|
||||||
|
|
||||||
### inputs.version
|
|
||||||
|
|
||||||
By default, the latest stable version of Docker is fetched from download.docker.com.
|
|
||||||
|
|
||||||
You can specify a specific version number (e.g. `v27.4.0`).
|
|
||||||
Which is a shorthand for the full comma separated value:
|
|
||||||
|
|
||||||
`type=archive,channel=stable,version=v27.4.0`
|
|
||||||
|
|
||||||
You can also use this full csv format instead.
|
|
||||||
|
|
||||||
Currently supported source types are:
|
|
||||||
- `archive`
|
|
||||||
- `image`
|
|
||||||
|
|
||||||
#### `type=archive`
|
|
||||||
| Key | Default | Description |
|
|
||||||
|-----------|------------|--------------------------------------------------------------------------------------|
|
|
||||||
| `type` | `archive` | The source type of the Docker binaries. Possible values are `archive` and `image`. |
|
|
||||||
| `channel` | `stable` | The download.docker.com channel (`stable` or `test`). |
|
|
||||||
| `version` | `latest` | The Docker version to use. |
|
|
||||||
|
|
||||||
Examples:
|
|
||||||
```yaml
|
|
||||||
# last stable released version
|
|
||||||
version: latest
|
|
||||||
version: type=archive # same as above
|
|
||||||
version: version=latest # same as above
|
|
||||||
version: type=archive,version=latest # same as above
|
|
||||||
```
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# v27.3.0-rc.1 from test channel
|
|
||||||
version: type=archive,version=27.3.0-rc.1,channel=test
|
|
||||||
```
|
|
||||||
|
|
||||||
#### `type=image`
|
|
||||||
|
|
||||||
Other possible source type is `image` which will pull the Docker binaries from the `moby/moby-bin` and
|
|
||||||
`dockereng/cli-bin` Docker Hub repositories.
|
|
||||||
The advantage of using this source type is that these images are built by the Moby and Docker CI pipelines
|
|
||||||
for each branch and PR, so you can use the `tag` input to install a specific version or branch (e.g. `master`).
|
|
||||||
|
|
||||||
| Key | Default | Description |
|
|
||||||
|-----------|------------|--------------------------------------------------------------------------------------|
|
|
||||||
| `tag` | `latest` | The image tag to use. |
|
|
||||||
|
|
||||||
See https://hub.docker.com/r/moby/moby-bin/tags and https://hub.docker.com/r/dockereng/cli-bin/tags for available tags.
|
|
||||||
|
|
||||||
Examples:
|
|
||||||
```yaml
|
|
||||||
# install last stable released version from bin images
|
|
||||||
version: type=image
|
|
||||||
version: type=image,tag=latest # same as above
|
|
||||||
```
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# a cutting-edge version from the `master` branch
|
|
||||||
version: type=image,tag=master
|
|
||||||
```
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
# install v27.4.0 from bin images
|
|
||||||
version: type=image,tag=27.4.0
|
|
||||||
```
|
|
||||||
|
|
||||||
### outputs
|
|
||||||
|
|
||||||
The following outputs are available
|
|
||||||
|
|
||||||
| Name | Type | Description |
|
|
||||||
|--------|--------|---------------------------------------|
|
|
||||||
| `sock` | String | Docker socket path |
|
|
||||||
| `tcp` | String | Docker TCP address if tcp-port is set |
|
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
Want to contribute? Awesome! You can find information about contributing to
|
Want to contribute? Awesome! The most basic way to show your support is to star
|
||||||
this project in the [CONTRIBUTING.md](/.github/CONTRIBUTING.md)
|
the project, or to raise issues. You can also support this project by [**becoming a sponsor on GitHub**](https://github.com/sponsors/crazy-max)
|
||||||
|
or by making a [PayPal donation](https://www.paypal.me/crazyws) to ensure this
|
||||||
|
journey continues indefinitely!
|
||||||
|
|
||||||
|
Thanks again for your support, it is much appreciated! :pray:
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
56
TROUBLESHOOTING.md
Normal file
56
TROUBLESHOOTING.md
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
# Troubleshooting
|
||||||
|
|
||||||
|
## macOS: `qemu[stderr]: qemu-system-x86_64: Unknown Error`
|
||||||
|
|
||||||
|
Colima may fail to start with the following error:
|
||||||
|
|
||||||
|
```
|
||||||
|
time="2023-08-26T06:30:33Z" level=info msg="[hostagent] Starting QEMU (hint: to watch the boot progress, see \"/Users/runner/.lima/colima/serial*.log\")"
|
||||||
|
time="2023-08-26T06:30:34Z" level=info msg="SSH Local Port: 49209"
|
||||||
|
time="2023-08-26T06:30:34Z" level=info msg="[hostagent] Waiting for the essential requirement 1 of 3: \"ssh\""
|
||||||
|
time="2023-08-26T06:30:34Z" level=info msg="[hostagent] Driver stopped due to error: \"exit status 255\""
|
||||||
|
time="2023-08-26T06:30:34Z" level=info msg="[hostagent] Shutting down the host agent"
|
||||||
|
time="2023-08-26T06:30:34Z" level=warning msg="[hostagent] failed to exit SSH master"
|
||||||
|
time="2023-08-26T06:30:34Z" level=info msg="[hostagent] Shutting down QEMU with ACPI"
|
||||||
|
time="2023-08-26T06:30:34Z" level=warning msg="[hostagent] failed to open the QMP socket \"/Users/runner/.lima/colima/qmp.sock\", forcibly killing QEMU"
|
||||||
|
time="2023-08-26T06:30:34Z" level=info msg="[hostagent] QEMU has already exited"
|
||||||
|
time="2023-08-26T06:30:34Z" level=fatal msg="exiting, status={Running:false Degraded:false Exiting:true Errors:[] SSHLocalPort:0} (hint: see \"/Users/runner/.lima/colima/ha.stderr.log\")"
|
||||||
|
time="2023-08-26T06:30:34Z" level=fatal msg="error starting vm: error at 'creating and starting': exit status 1"
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
{"level":"debug","msg":"executing [ssh-keygen -t ed25519 -q -N -f /Users/runner/.lima/_config/user]","time":"2023-08-26T07:16:40Z"}
|
||||||
|
{"level":"debug","msg":"Creating iso file /Users/runner/.lima/colima/cidata.iso","time":"2023-08-26T07:16:41Z"}
|
||||||
|
{"level":"debug","msg":"Using /var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/diskfs_iso3418167253 as workspace","time":"2023-08-26T07:16:41Z"}
|
||||||
|
{"level":"debug","msg":"OpenSSH version 8.6.1 detected","time":"2023-08-26T07:16:41Z"}
|
||||||
|
{"level":"debug","msg":"AES accelerator seems available, prioritizing aes128-gcm@openssh.com and aes256-gcm@openssh.com","time":"2023-08-26T07:16:41Z"}
|
||||||
|
{"level":"debug","msg":"QEMU version 8.0.4 detected","time":"2023-08-26T07:16:43Z"}
|
||||||
|
{"level":"debug","msg":"firmware candidates = [/Users/runner/.local/share/qemu/edk2-x86_64-code.fd /Users/runner/.colima/_wrapper/4e1b408f843d1c63afbbdcf80c40e4c88d33509f/share/qemu/edk2-x86_64-code.fd /usr/share/OVMF/OVMF_CODE.fd /usr/share/qemu/ovmf-x86_64-code.bin /usr/share/edk2-ovmf/x64/OVMF_CODE.fd]","time":"2023-08-26T07:16:43Z"}
|
||||||
|
{"level":"info","msg":"Starting QEMU (hint: to watch the boot progress, see \"/Users/runner/.lima/colima/serial*.log\")","time":"2023-08-26T07:16:43Z"}
|
||||||
|
{"level":"debug","msg":"qCmd.Args: [/Users/runner/.colima/_wrapper/4e1b408f843d1c63afbbdcf80c40e4c88d33509f/bin/qemu-system-x86_64 -m 2048 -cpu host,-pdpe1gb -machine q35,accel=hvf -smp 2,sockets=1,cores=2,threads=1 -drive if=pflash,format=raw,readonly=on,file=/Users/runner/.colima/_wrapper/4e1b408f843d1c63afbbdcf80c40e4c88d33509f/share/qemu/edk2-x86_64-code.fd -boot order=d,splash-time=0,menu=on -drive file=/Users/runner/.lima/colima/basedisk,format=raw,media=cdrom,readonly=on -drive file=/Users/runner/.lima/colima/diffdisk,if=virtio,discard=on -drive id=cdrom0,if=none,format=raw,readonly=on,file=/Users/runner/.lima/colima/cidata.iso -device virtio-scsi-pci,id=scsi0 -device scsi-cd,bus=scsi0.0,drive=cdrom0 -netdev user,id=net0,net=192.168.5.0/24,dhcpstart=192.168.5.15,hostfwd=tcp:127.0.0.1:49168-:22 -device virtio-net-pci,netdev=net0,mac=52:55:55:be:6e:dd -device virtio-rng-pci -display none -device virtio-vga -device virtio-keyboard-pci -device virtio-mouse-pci -device qemu-xhci,id=usb-bus -parallel none -chardev socket,id=char-serial,path=/Users/runner/.lima/colima/serial.sock,server=on,wait=off,logfile=/Users/runner/.lima/colima/serial.log -serial chardev:char-serial -chardev socket,id=char-serial-virtio,path=/Users/runner/.lima/colima/serialv.sock,server=on,wait=off,logfile=/Users/runner/.lima/colima/serialv.log -device virtio-serial-pci,id=virtio-serial0,max_ports=1 -device virtconsole,chardev=char-serial-virtio,id=console0 -virtfs local,mount_tag=mount0,path=/Users/runner,security_model=none -virtfs local,mount_tag=mount1,path=/tmp/colima,security_model=none -chardev socket,id=char-qmp,path=/Users/runner/.lima/colima/qmp.sock,server=on,wait=off -qmp chardev:char-qmp -name lima-colima -pidfile /Users/runner/.lima/colima/qemu.pid]","time":"2023-08-26T07:16:43Z"}
|
||||||
|
{"level":"info","msg":"Waiting for the essential requirement 1 of 3: \"ssh\"","time":"2023-08-26T07:16:43Z"}
|
||||||
|
{"level":"debug","msg":"executing script \"ssh\"","time":"2023-08-26T07:16:43Z"}
|
||||||
|
{"level":"debug","msg":"executing ssh for script \"ssh\": /usr/bin/ssh [ssh -F /dev/null -o IdentityFile=\"/Users/runner/.lima/_config/user\" -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o NoHostAuthenticationForLocalhost=yes -o GSSAPIAuthentication=no -o PreferredAuthentications=publickey -o Compression=no -o BatchMode=yes -o IdentitiesOnly=yes -o Ciphers=\"^aes128-gcm@openssh.com,aes256-gcm@openssh.com\" -o User=runner -o ControlMaster=auto -o ControlPath=\"/Users/runner/.lima/colima/ssh.sock\" -o ControlPersist=5m -p 49168 127.0.0.1 -- /bin/bash]","time":"2023-08-26T07:16:43Z"}
|
||||||
|
{"level":"debug","msg":"stdout=\"\", stderr=\"ssh: connect to host 127.0.0.1 port 49168: Connection refused\\r\\n\", err=failed to execute script \"ssh\": stdout=\"\", stderr=\"ssh: connect to host 127.0.0.1 port 49168: Connection refused\\r\\n\": exit status 255","time":"2023-08-26T07:16:43Z"}
|
||||||
|
{"level":"debug","msg":"qemu[stderr]: qemu-system-x86_64: Unknown Error","time":"2023-08-26T07:16:43Z"}
|
||||||
|
{"level":"info","msg":"Driver stopped due to error: \"exit status 255\"","time":"2023-08-26T07:16:43Z"}
|
||||||
|
{"level":"info","msg":"Shutting down the host agent","time":"2023-08-26T07:16:44Z"}
|
||||||
|
{"level":"debug","msg":"shutting down the SSH master","time":"2023-08-26T07:16:44Z"}
|
||||||
|
{"level":"debug","msg":"executing ssh for exiting the master: /usr/bin/ssh [ssh -F /dev/null -o IdentityFile=\"/Users/runner/.lima/_config/user\" -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o NoHostAuthenticationForLocalhost=yes -o GSSAPIAuthentication=no -o PreferredAuthentications=publickey -o Compression=no -o BatchMode=yes -o IdentitiesOnly=yes -o Ciphers=\"^aes128-gcm@openssh.com,aes256-gcm@openssh.com\" -o User=runner -o ControlMaster=auto -o ControlPath=\"/Users/runner/.lima/colima/ssh.sock\" -o ControlPersist=5m -O exit -p 49168 127.0.0.1]","time":"2023-08-26T07:16:44Z"}
|
||||||
|
{"error":"failed to execute `ssh -O exit -p 49168 127.0.0.1`, out=\"Control socket connect(/Users/runner/.lima/colima/ssh.sock): No such file or directory\\r\\n\": exit status 255","level":"warning","msg":"failed to exit SSH master","time":"2023-08-26T07:16:44Z"}
|
||||||
|
{"level":"info","msg":"Shutting down QEMU with ACPI","time":"2023-08-26T07:16:44Z"}
|
||||||
|
{"error":"dial unix /Users/runner/.lima/colima/qmp.sock: connect: connection refused","level":"warning","msg":"failed to open the QMP socket \"/Users/runner/.lima/colima/qmp.sock\", forcibly killing QEMU","time":"2023-08-26T07:16:44Z"}
|
||||||
|
{"level":"info","msg":"QEMU has already exited","time":"2023-08-26T07:16:44Z"}
|
||||||
|
```
|
||||||
|
|
||||||
|
To fix this issue you can replace the existing signature of QEMU binary with
|
||||||
|
the required entitlements as suggested in https://github.com/abiosoft/colima/issues/786#issuecomment-1693629650.
|
||||||
|
This can be done within this action by setting the env var `SIGN_QEMU_BINARY=1`:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
-
|
||||||
|
name: Set up Docker
|
||||||
|
uses: crazy-max/ghaction-setup-docker@v2
|
||||||
|
env:
|
||||||
|
SIGN_QEMU_BINARY: 1
|
||||||
|
```
|
@ -17,195 +17,40 @@ describe('getInputs', () => {
|
|||||||
[
|
[
|
||||||
0,
|
0,
|
||||||
new Map<string, string>([
|
new Map<string, string>([
|
||||||
['version', 'v24.0.8'],
|
['version', 'v23.0.1'],
|
||||||
['set-host', 'false'],
|
|
||||||
['rootless', 'false'],
|
|
||||||
]),
|
]),
|
||||||
{
|
{
|
||||||
source: {
|
version: 'v23.0.1',
|
||||||
type: 'archive',
|
channel: '',
|
||||||
version: 'v24.0.8',
|
|
||||||
channel: 'stable'
|
|
||||||
},
|
|
||||||
context: '',
|
context: '',
|
||||||
daemonConfig: '',
|
daemonConfig: '',
|
||||||
rootless: false,
|
|
||||||
setHost: false
|
|
||||||
} as context.Inputs
|
} as context.Inputs
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
1,
|
1,
|
||||||
new Map<string, string>([
|
new Map<string, string>([
|
||||||
['version', 'v24.0.0-rc.4'],
|
['version', 'v23.0.0-rc.4'],
|
||||||
['channel', 'test'],
|
['channel', 'test'],
|
||||||
['context', 'foo'],
|
['context', 'foo'],
|
||||||
['daemon-config', `{"debug":true,"features":{"containerd-snapshotter":true}}`],
|
['daemon-config', `{"debug":true,"features":{"containerd-snapshotter":true}}`],
|
||||||
['set-host', 'false'],
|
|
||||||
['rootless', 'false'],
|
|
||||||
]),
|
]),
|
||||||
{
|
{
|
||||||
source: {
|
version: 'v23.0.0-rc.4',
|
||||||
type: 'archive',
|
channel: 'test',
|
||||||
version: 'v24.0.0-rc.4',
|
|
||||||
channel: 'test'
|
|
||||||
},
|
|
||||||
context: 'foo',
|
context: 'foo',
|
||||||
daemonConfig: `{"debug":true,"features":{"containerd-snapshotter":true}}`,
|
daemonConfig: `{"debug":true,"features":{"containerd-snapshotter":true}}`,
|
||||||
rootless: false,
|
|
||||||
setHost: false
|
|
||||||
} as context.Inputs
|
} as context.Inputs
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
2,
|
2,
|
||||||
new Map<string, string>([
|
new Map<string, string>([]),
|
||||||
['set-host', 'true'],
|
|
||||||
['rootless', 'false'],
|
|
||||||
]),
|
|
||||||
{
|
{
|
||||||
source: {
|
version: 'latest',
|
||||||
type: 'archive',
|
channel: '',
|
||||||
version: 'latest',
|
|
||||||
channel: 'stable',
|
|
||||||
},
|
|
||||||
context: '',
|
context: '',
|
||||||
daemonConfig: '',
|
daemonConfig: '',
|
||||||
rootless: false,
|
|
||||||
setHost: true
|
|
||||||
} as context.Inputs
|
} as context.Inputs
|
||||||
],
|
]
|
||||||
[
|
|
||||||
3,
|
|
||||||
new Map<string, string>([
|
|
||||||
['version', 'type=image,tag=master'],
|
|
||||||
['context', 'foo'],
|
|
||||||
['daemon-config', `{"debug":true,"features":{"containerd-snapshotter":true}}`],
|
|
||||||
['set-host', 'false'],
|
|
||||||
['rootless', 'false'],
|
|
||||||
]),
|
|
||||||
{
|
|
||||||
source: {
|
|
||||||
type: 'image',
|
|
||||||
tag: 'master',
|
|
||||||
},
|
|
||||||
context: 'foo',
|
|
||||||
daemonConfig: `{"debug":true,"features":{"containerd-snapshotter":true}}`,
|
|
||||||
rootless: false,
|
|
||||||
setHost: false
|
|
||||||
} as context.Inputs
|
|
||||||
],
|
|
||||||
[
|
|
||||||
4,
|
|
||||||
new Map<string, string>([
|
|
||||||
['version', 'type=image'],
|
|
||||||
['set-host', 'false'],
|
|
||||||
['rootless', 'false'],
|
|
||||||
]),
|
|
||||||
{
|
|
||||||
source: {
|
|
||||||
type: 'image',
|
|
||||||
tag: 'latest',
|
|
||||||
},
|
|
||||||
context: '',
|
|
||||||
daemonConfig: '',
|
|
||||||
rootless: false,
|
|
||||||
setHost: false
|
|
||||||
} as context.Inputs
|
|
||||||
],
|
|
||||||
[
|
|
||||||
5,
|
|
||||||
new Map<string, string>([
|
|
||||||
['version', 'type=archive'],
|
|
||||||
['set-host', 'false'],
|
|
||||||
['rootless', 'false'],
|
|
||||||
]),
|
|
||||||
{
|
|
||||||
source: {
|
|
||||||
type: 'archive',
|
|
||||||
version: 'latest',
|
|
||||||
channel: 'stable',
|
|
||||||
},
|
|
||||||
setHost: false,
|
|
||||||
context: '',
|
|
||||||
daemonConfig: '',
|
|
||||||
rootless: false,
|
|
||||||
} as context.Inputs
|
|
||||||
],
|
|
||||||
[
|
|
||||||
6,
|
|
||||||
new Map<string, string>([
|
|
||||||
['version', 'version=v27.2.0,channel=test'],
|
|
||||||
['set-host', 'false'],
|
|
||||||
['rootless', 'false'],
|
|
||||||
]),
|
|
||||||
{
|
|
||||||
source: {
|
|
||||||
type: 'archive',
|
|
||||||
version: 'v27.2.0',
|
|
||||||
channel: 'test',
|
|
||||||
},
|
|
||||||
setHost: false,
|
|
||||||
context: '',
|
|
||||||
daemonConfig: '',
|
|
||||||
rootless: false,
|
|
||||||
} as context.Inputs
|
|
||||||
],
|
|
||||||
[
|
|
||||||
7,
|
|
||||||
new Map<string, string>([
|
|
||||||
['version', 'type=image,tag=27.2.1'],
|
|
||||||
['set-host', 'false'],
|
|
||||||
['rootless', 'false'],
|
|
||||||
]),
|
|
||||||
{
|
|
||||||
source: {
|
|
||||||
type: 'image',
|
|
||||||
tag: '27.2.1',
|
|
||||||
},
|
|
||||||
setHost: false,
|
|
||||||
context: '',
|
|
||||||
daemonConfig: '',
|
|
||||||
rootless: false,
|
|
||||||
} as context.Inputs
|
|
||||||
],
|
|
||||||
[
|
|
||||||
8,
|
|
||||||
new Map<string, string>([
|
|
||||||
['version', 'type=image,tag=27.2.1'],
|
|
||||||
['set-host', 'false'],
|
|
||||||
['rootless', 'true']
|
|
||||||
]),
|
|
||||||
{
|
|
||||||
source: {
|
|
||||||
type: 'image',
|
|
||||||
tag: '27.2.1',
|
|
||||||
},
|
|
||||||
setHost: false,
|
|
||||||
context: '',
|
|
||||||
daemonConfig: '',
|
|
||||||
rootless: true,
|
|
||||||
} as context.Inputs
|
|
||||||
],
|
|
||||||
[
|
|
||||||
9,
|
|
||||||
new Map<string, string>([
|
|
||||||
['version', 'v24.0.8'],
|
|
||||||
['tcp-port', '2378'],
|
|
||||||
['set-host', 'false'],
|
|
||||||
['rootless', 'false'],
|
|
||||||
]),
|
|
||||||
{
|
|
||||||
source: {
|
|
||||||
type: 'archive',
|
|
||||||
version: 'v24.0.8',
|
|
||||||
channel: 'stable'
|
|
||||||
},
|
|
||||||
context: '',
|
|
||||||
daemonConfig: '',
|
|
||||||
tcpPort: 2378,
|
|
||||||
rootless: false,
|
|
||||||
setHost: false
|
|
||||||
} as context.Inputs
|
|
||||||
],
|
|
||||||
])(
|
])(
|
||||||
'[%d] given %p as inputs, returns %p',
|
'[%d] given %p as inputs, returns %p',
|
||||||
async (num: number, inputs: Map<string, string>, expected: context.Inputs) => {
|
async (num: number, inputs: Map<string, string>, expected: context.Inputs) => {
|
||||||
|
25
action.yml
25
action.yml
@ -1,14 +1,14 @@
|
|||||||
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
|
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
|
||||||
name: Docker Setup Docker
|
name: 'Docker Setup Docker'
|
||||||
description: Set up Docker for use in GitHub Actions by downloading and installing a version of Docker CE
|
description: 'Set up Docker for use in GitHub Actions by downloading and installing a version of Docker CE'
|
||||||
author: docker
|
author: 'crazy-max'
|
||||||
branding:
|
branding:
|
||||||
icon: 'anchor'
|
icon: 'anchor'
|
||||||
color: 'blue'
|
color: 'blue'
|
||||||
|
|
||||||
inputs:
|
inputs:
|
||||||
version:
|
version:
|
||||||
description: 'Docker CE version. (e.g, v24.0.9)'
|
description: 'Docker CE version. (e.g, v23.0.1)'
|
||||||
required: false
|
required: false
|
||||||
default: 'latest'
|
default: 'latest'
|
||||||
channel:
|
channel:
|
||||||
@ -17,26 +17,9 @@ inputs:
|
|||||||
daemon-config:
|
daemon-config:
|
||||||
description: 'Docker daemon JSON configuration'
|
description: 'Docker daemon JSON configuration'
|
||||||
required: false
|
required: false
|
||||||
tcp-port:
|
|
||||||
description: 'TCP port to expose the Docker API locally'
|
|
||||||
required: false
|
|
||||||
context:
|
context:
|
||||||
description: 'Docker context name. (default setup-docker-action)'
|
description: 'Docker context name. (default setup-docker-action)'
|
||||||
required: false
|
required: false
|
||||||
set-host:
|
|
||||||
description: 'Set DOCKER_HOST environment variable to docker socket path'
|
|
||||||
default: 'false'
|
|
||||||
required: false
|
|
||||||
rootless:
|
|
||||||
description: 'Enable Docker rootless mode'
|
|
||||||
default: 'false'
|
|
||||||
required: false
|
|
||||||
|
|
||||||
outputs:
|
|
||||||
sock:
|
|
||||||
description: "Docker socket path"
|
|
||||||
tcp:
|
|
||||||
description: "Docker TCP address if tcp-port is set"
|
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: 'node20'
|
using: 'node20'
|
||||||
|
@ -4,13 +4,8 @@ ARG NODE_VERSION=20
|
|||||||
|
|
||||||
FROM node:${NODE_VERSION}-alpine AS base
|
FROM node:${NODE_VERSION}-alpine AS base
|
||||||
RUN apk add --no-cache cpio findutils git
|
RUN apk add --no-cache cpio findutils git
|
||||||
|
RUN yarn config set --home enableTelemetry 0
|
||||||
WORKDIR /src
|
WORKDIR /src
|
||||||
RUN --mount=type=bind,target=.,rw \
|
|
||||||
--mount=type=cache,target=/src/.yarn/cache <<EOT
|
|
||||||
corepack enable
|
|
||||||
yarn --version
|
|
||||||
yarn config set --home enableTelemetry 0
|
|
||||||
EOT
|
|
||||||
|
|
||||||
FROM base AS deps
|
FROM base AS deps
|
||||||
RUN --mount=type=bind,target=.,rw \
|
RUN --mount=type=bind,target=.,rw \
|
||||||
|
95
dist/index.js
generated
vendored
95
dist/index.js
generated
vendored
File diff suppressed because one or more lines are too long
2
dist/index.js.map
generated
vendored
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
3291
dist/licenses.txt
generated
vendored
3291
dist/licenses.txt
generated
vendored
File diff suppressed because it is too large
Load Diff
@ -1,9 +1,3 @@
|
|||||||
target "_common" {
|
|
||||||
args = {
|
|
||||||
BUILDKIT_CONTEXT_KEEP_GIT_DIR = 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
group "default" {
|
group "default" {
|
||||||
targets = ["build"]
|
targets = ["build"]
|
||||||
}
|
}
|
||||||
@ -17,49 +11,42 @@ group "validate" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
target "build" {
|
target "build" {
|
||||||
inherits = ["_common"]
|
|
||||||
dockerfile = "dev.Dockerfile"
|
dockerfile = "dev.Dockerfile"
|
||||||
target = "build-update"
|
target = "build-update"
|
||||||
output = ["."]
|
output = ["."]
|
||||||
}
|
}
|
||||||
|
|
||||||
target "build-validate" {
|
target "build-validate" {
|
||||||
inherits = ["_common"]
|
|
||||||
dockerfile = "dev.Dockerfile"
|
dockerfile = "dev.Dockerfile"
|
||||||
target = "build-validate"
|
target = "build-validate"
|
||||||
output = ["type=cacheonly"]
|
output = ["type=cacheonly"]
|
||||||
}
|
}
|
||||||
|
|
||||||
target "format" {
|
target "format" {
|
||||||
inherits = ["_common"]
|
|
||||||
dockerfile = "dev.Dockerfile"
|
dockerfile = "dev.Dockerfile"
|
||||||
target = "format-update"
|
target = "format-update"
|
||||||
output = ["."]
|
output = ["."]
|
||||||
}
|
}
|
||||||
|
|
||||||
target "lint" {
|
target "lint" {
|
||||||
inherits = ["_common"]
|
|
||||||
dockerfile = "dev.Dockerfile"
|
dockerfile = "dev.Dockerfile"
|
||||||
target = "lint"
|
target = "lint"
|
||||||
output = ["type=cacheonly"]
|
output = ["type=cacheonly"]
|
||||||
}
|
}
|
||||||
|
|
||||||
target "vendor-update" {
|
target "vendor-update" {
|
||||||
inherits = ["_common"]
|
|
||||||
dockerfile = "dev.Dockerfile"
|
dockerfile = "dev.Dockerfile"
|
||||||
target = "vendor-update"
|
target = "vendor-update"
|
||||||
output = ["."]
|
output = ["."]
|
||||||
}
|
}
|
||||||
|
|
||||||
target "vendor-validate" {
|
target "vendor-validate" {
|
||||||
inherits = ["_common"]
|
|
||||||
dockerfile = "dev.Dockerfile"
|
dockerfile = "dev.Dockerfile"
|
||||||
target = "vendor-validate"
|
target = "vendor-validate"
|
||||||
output = ["type=cacheonly"]
|
output = ["type=cacheonly"]
|
||||||
}
|
}
|
||||||
|
|
||||||
target "test" {
|
target "test" {
|
||||||
inherits = ["_common"]
|
|
||||||
dockerfile = "dev.Dockerfile"
|
dockerfile = "dev.Dockerfile"
|
||||||
target = "test-coverage"
|
target = "test-coverage"
|
||||||
output = ["./coverage"]
|
output = ["./coverage"]
|
||||||
|
@ -15,19 +15,20 @@
|
|||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/docker/setup-docker-action.git"
|
"url": "git+https://github.com/crazy-max/ghaction-setup-docker.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"actions",
|
"actions",
|
||||||
"docker",
|
"docker",
|
||||||
"engine"
|
"engine"
|
||||||
],
|
],
|
||||||
"author": "Docker Inc.",
|
"author": "CrazyMax",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"packageManager": "yarn@3.6.3",
|
"packageManager": "yarn@3.6.3",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.11.1",
|
"@actions/core": "^1.10.1",
|
||||||
"@docker/actions-toolkit": "^0.61.0"
|
"@docker/actions-toolkit": "^0.14.0",
|
||||||
|
"uuid": "^9.0.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^20.6.0",
|
"@types/node": "^20.6.0",
|
||||||
|
@ -1,102 +1,17 @@
|
|||||||
import * as core from '@actions/core';
|
import * as core from '@actions/core';
|
||||||
import {parse} from 'csv-parse/sync';
|
|
||||||
|
|
||||||
import {InstallSource} from '@docker/actions-toolkit/lib/docker/install';
|
|
||||||
import {Util} from '@docker/actions-toolkit/lib/util';
|
|
||||||
|
|
||||||
export interface Inputs {
|
export interface Inputs {
|
||||||
source: InstallSource;
|
version: string;
|
||||||
|
channel: string;
|
||||||
daemonConfig?: string;
|
daemonConfig?: string;
|
||||||
tcpPort?: number;
|
|
||||||
context: string;
|
context: string;
|
||||||
setHost: boolean;
|
|
||||||
rootless: boolean;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getInputs(): Inputs {
|
export function getInputs(): Inputs {
|
||||||
const rawVersion = core.getInput('version') || 'latest';
|
|
||||||
const source = parseSource(rawVersion);
|
|
||||||
const channel = core.getInput('channel');
|
|
||||||
if (channel && source.type === 'archive') {
|
|
||||||
source.channel = channel;
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
source: source,
|
version: core.getInput('version') || 'latest',
|
||||||
|
channel: core.getInput('channel'),
|
||||||
daemonConfig: core.getInput('daemon-config'),
|
daemonConfig: core.getInput('daemon-config'),
|
||||||
tcpPort: Util.getInputNumber('tcp-port'),
|
context: core.getInput('context')
|
||||||
context: core.getInput('context'),
|
|
||||||
setHost: core.getBooleanInput('set-host'),
|
|
||||||
rootless: core.getBooleanInput('rootless')
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
function parseSource(input: string): InstallSource {
|
|
||||||
let [type, version, channel, tag] = ['archive', 'latest', 'stable', 'latest'];
|
|
||||||
|
|
||||||
const fields = parse(input, {
|
|
||||||
relaxColumnCount: true,
|
|
||||||
skipEmptyLines: true
|
|
||||||
})[0];
|
|
||||||
for (const field of fields) {
|
|
||||||
const parts = field
|
|
||||||
.toString()
|
|
||||||
.split(/(?<=^[^=]+?)=/)
|
|
||||||
.map(item => item.trim());
|
|
||||||
|
|
||||||
switch (parts[0]) {
|
|
||||||
case 'type':
|
|
||||||
type = parts[1];
|
|
||||||
break;
|
|
||||||
case 'version':
|
|
||||||
version = parts[1];
|
|
||||||
break;
|
|
||||||
case 'channel':
|
|
||||||
channel = parts[1];
|
|
||||||
break;
|
|
||||||
case 'tag':
|
|
||||||
tag = parts[1];
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
if (fields.length === 1) {
|
|
||||||
version = parts[0];
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
throw new Error(`Invalid field: ${parts[0]}`);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!type) {
|
|
||||||
throw new Error(`Invalid type: ${type}`);
|
|
||||||
}
|
|
||||||
if (!channel) {
|
|
||||||
throw new Error(`Invalid channel: ${channel}`);
|
|
||||||
}
|
|
||||||
if (!version) {
|
|
||||||
throw new Error(`Invalid version: ${version}`);
|
|
||||||
}
|
|
||||||
if (!tag) {
|
|
||||||
throw new Error(`Invalid tag: ${tag}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
let src: InstallSource;
|
|
||||||
switch (type) {
|
|
||||||
case 'archive':
|
|
||||||
src = {
|
|
||||||
type: 'archive',
|
|
||||||
version: version,
|
|
||||||
channel: channel
|
|
||||||
};
|
|
||||||
break;
|
|
||||||
case 'image':
|
|
||||||
src = {
|
|
||||||
type: 'image',
|
|
||||||
tag: tag
|
|
||||||
};
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
throw new Error(`Invalid version: ${input}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
return src;
|
|
||||||
}
|
|
||||||
|
73
src/main.ts
73
src/main.ts
@ -1,95 +1,40 @@
|
|||||||
import * as crypto from 'crypto';
|
|
||||||
import os from 'os';
|
import os from 'os';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
|
import * as uuid from 'uuid';
|
||||||
import * as core from '@actions/core';
|
import * as core from '@actions/core';
|
||||||
import * as actionsToolkit from '@docker/actions-toolkit';
|
import * as actionsToolkit from '@docker/actions-toolkit';
|
||||||
import {Install} from '@docker/actions-toolkit/lib/docker/install';
|
import {Install} from '@docker/actions-toolkit/lib/docker/install';
|
||||||
import {Docker} from '@docker/actions-toolkit/lib/docker/docker';
|
import {Docker} from '@docker/actions-toolkit/lib/docker/docker';
|
||||||
import {Install as RegclientInstall} from '@docker/actions-toolkit/lib/regclient/install';
|
|
||||||
import {Regctl} from '@docker/actions-toolkit/lib/regclient/regctl';
|
|
||||||
import {Install as UndockInstall} from '@docker/actions-toolkit/lib/undock/install';
|
|
||||||
import {Undock} from '@docker/actions-toolkit/lib/undock/undock';
|
|
||||||
|
|
||||||
import * as context from './context';
|
import * as context from './context';
|
||||||
import * as stateHelper from './state-helper';
|
import * as stateHelper from './state-helper';
|
||||||
|
|
||||||
const regctlDefaultVersion = 'v0.8.3';
|
|
||||||
const undockDefaultVersion = 'v0.10.0';
|
|
||||||
|
|
||||||
actionsToolkit.run(
|
actionsToolkit.run(
|
||||||
// main
|
// main
|
||||||
async () => {
|
async () => {
|
||||||
const input: context.Inputs = context.getInputs();
|
const input: context.Inputs = context.getInputs();
|
||||||
const runDir = path.join(os.homedir(), `setup-docker-action-${crypto.randomUUID().slice(0, 8)}`);
|
const runDir = path.join(os.homedir(), `setup-docker-action-${uuid.v4()}`);
|
||||||
|
|
||||||
if (input.context == 'default') {
|
if (input.context == 'default') {
|
||||||
throw new Error(`'default' context cannot be used.`);
|
throw new Error(`'default' context cannot be used.`);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (input.source.type === 'image') {
|
|
||||||
await core.group(`Download and install regctl`, async () => {
|
|
||||||
const regclientInstall = new RegclientInstall();
|
|
||||||
const regclientBinPath = await regclientInstall.download(
|
|
||||||
process.env.REGCTL_VERSION && process.env.REGCTL_VERSION.trim()
|
|
||||||
? process.env.REGCTL_VERSION
|
|
||||||
: regctlDefaultVersion,
|
|
||||||
true
|
|
||||||
);
|
|
||||||
await regclientInstall.install(regclientBinPath);
|
|
||||||
});
|
|
||||||
await core.group(`Download and install undock`, async () => {
|
|
||||||
const undockInstall = new UndockInstall();
|
|
||||||
const undockBinPath = await undockInstall.download(
|
|
||||||
process.env.UNDOCK_VERSION && process.env.UNDOCK_VERSION.trim()
|
|
||||||
? process.env.UNDOCK_VERSION
|
|
||||||
: undockDefaultVersion,
|
|
||||||
true
|
|
||||||
);
|
|
||||||
await undockInstall.install(undockBinPath);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
let tcpPort: number | undefined;
|
|
||||||
let tcpAddress: string | undefined;
|
|
||||||
if (input.tcpPort) {
|
|
||||||
tcpPort = input.tcpPort;
|
|
||||||
tcpAddress = `tcp://127.0.0.1:${tcpPort}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
const install = new Install({
|
const install = new Install({
|
||||||
runDir: runDir,
|
runDir: runDir,
|
||||||
source: input.source,
|
version: input.version,
|
||||||
rootless: input.rootless,
|
channel: input.channel || 'stable',
|
||||||
contextName: input.context || 'setup-docker-action',
|
contextName: input.context || 'setup-docker-action',
|
||||||
daemonConfig: input.daemonConfig,
|
daemonConfig: input.daemonConfig
|
||||||
localTCPPort: tcpPort,
|
|
||||||
regctl: new Regctl(),
|
|
||||||
undock: new Undock()
|
|
||||||
});
|
});
|
||||||
let toolDir;
|
let toolDir;
|
||||||
if (!(await Docker.isAvailable()) || input.source) {
|
if (!(await Docker.isAvailable()) || input.version) {
|
||||||
await core.group(`Download docker`, async () => {
|
await core.group(`Download docker`, async () => {
|
||||||
toolDir = await install.download();
|
toolDir = await install.download();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (toolDir) {
|
if (toolDir) {
|
||||||
stateHelper.setRunDir(runDir);
|
stateHelper.setRunDir(runDir);
|
||||||
const sockPath = await install.install();
|
await install.install();
|
||||||
await core.group(`Setting outputs`, async () => {
|
|
||||||
core.info(`sock=${sockPath}`);
|
|
||||||
core.setOutput('sock', sockPath);
|
|
||||||
if (tcpAddress) {
|
|
||||||
core.info(`tcp=${tcpAddress}`);
|
|
||||||
core.setOutput('tcp', tcpAddress);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
if (input.setHost) {
|
|
||||||
await core.group(`Setting Docker host`, async () => {
|
|
||||||
core.exportVariable('DOCKER_HOST', sockPath);
|
|
||||||
core.info(`DOCKER_HOST=${sockPath}`);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
await core.group(`Docker info`, async () => {
|
await core.group(`Docker info`, async () => {
|
||||||
@ -103,9 +48,7 @@ actionsToolkit.run(
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const install = new Install({
|
const install = new Install({
|
||||||
runDir: stateHelper.runDir,
|
runDir: stateHelper.runDir
|
||||||
regctl: new Regctl(),
|
|
||||||
undock: new Undock()
|
|
||||||
});
|
});
|
||||||
await install.tearDown();
|
await install.tearDown();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user