Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions .github/workflows/auto-pull-request-create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,3 @@ jobs:
with:
profile: actions
secrets: inherit

smoke-test:
name: Smoke test local action image
needs: [call]
runs-on: ubuntu-24.04-arm
steps:
- name: Checkout
uses: actions/checkout@v6

- name: Install Task
uses: arduino/setup-task@v2.0.0
with:
version: 3.x
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Build and run smoke test
run: task docker:test:smoke
17 changes: 0 additions & 17 deletions .github/workflows/cron-dependency-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,3 @@ jobs:
with:
profile: actions
secrets: inherit

smoke-test:
name: Smoke test local action image
needs: [call]
runs-on: ubuntu-24.04-arm
steps:
- name: Checkout
uses: actions/checkout@v6

- name: Install Task
uses: arduino/setup-task@v2.0.0
with:
version: 3.x
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Build and run smoke test
run: task docker:test:smoke
27 changes: 0 additions & 27 deletions .github/workflows/manual-sync-common-files.yml

This file was deleted.

8 changes: 0 additions & 8 deletions Taskfile.variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ env:
TERM: xterm-256color

vars:
# System context
SED:
sh: |
if [ "$(uname -s)" = "Darwin" ]; then
Expand All @@ -30,8 +29,6 @@ vars:
fi
PROJECT_DIR_NAME:
sh: basename "$PWD"

# Container metadata
DOCKER_IMAGE: '{{.DOCKER_IMAGE | default .PROJECT_DIR_NAME}}'
GITHUB_REPO: '{{.GITHUB_REPO | default .PROJECT_DIR_NAME}}'
DOCKER_ORG_NAME: '{{.DOCKER_ORG_NAME | default "devopsinfra"}}'
Expand Down Expand Up @@ -63,8 +60,6 @@ vars:
LABEL_HOMEPAGE: '{{.LABEL_HOMEPAGE | default "https://shyper.pro"}}'
LABEL_VENDOR: '{{.LABEL_VENDOR | default "DevOps-Infra"}}'
LABEL_LICENSE: '{{.LABEL_LICENSE | default "MIT"}}'

# Build context
CONTEXT: '{{.CONTEXT | default "."}}'
DOCKERFILE: '{{.DOCKERFILE | default "Dockerfile"}}'
PLATFORMS: '{{.PLATFORMS | default "linux/amd64,linux/arm64"}}'
Expand Down Expand Up @@ -120,8 +115,6 @@ vars:
sh: echo "{{.VERSION_FROM_ACTION_YML}}" | awk -F\. '{print $1}'
MINOR_FROM_ACTION_YML:
sh: echo "{{.VERSION_FROM_ACTION_YML}}" | awk -F\. '{print $1"."$2}'

# Git metadata
GIT_SHA:
sh: git rev-parse HEAD 2>/dev/null || echo 0000000000000000000000000000000000000000
GIT_SHORT_SHA:
Expand All @@ -133,7 +126,6 @@ vars:
else
git rev-parse --abbrev-ref HEAD 2>/dev/null || echo "unknown"
fi

# Labels for http://label-schema.org/rc1/#build-time-labels
# And for https://github.com/opencontainers/image-spec/blob/master/annotations.md
ANNOTATIONS: >-
Expand Down
1 change: 0 additions & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ includes:
taskfile: ./Taskfile.docker.yml
flatten: true


tasks:
default:
desc: List tasks
Expand Down
5 changes: 4 additions & 1 deletion tests/docker/local-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ commandTests:
command: bash
args:
- -lc
- test ! -f /tmp/checksums.txt && (test ! -d /var/cache/apk || test -z "$(find /var/cache/apk -mindepth 1 -maxdepth 1 2>/dev/null)")
- >-
test ! -f /tmp/checksums.txt && test ! -f /tmp/alpine-packages.txt &&
(test ! -d /var/cache/apk || test -z "$(find /var/cache/apk -mindepth 1 -maxdepth 1 2>/dev/null)") &&
(test ! -d /root/.cache || test -z "$(find /root/.cache -mindepth 1 -maxdepth 1 2>/dev/null)")

fileExistenceTests:
- name: entrypoint exists
Expand Down
Loading