[DNM] tests: backward-compatibility with v0.8.2 #385
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'master' | |
tags: | |
- 'v*' | |
pull_request: | |
env: | |
DESTDIR: ./bin | |
GO_VERSION: 1.23.6 | |
jobs: | |
validate: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
target: | |
- lint | |
- validate-vendor | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Run | |
run: | | |
make ${{ matrix.target }} | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-22.04 | |
- ubuntu-20.04 | |
- macOS-15 | |
- macOS-14 | |
- macOS-13 | |
- windows-2022 | |
env: | |
TEST_BC_BASE_VERSION: 0.8.2 | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
# fetch-tags is required for backward compatibility tests | |
fetch-tags: true | |
- | |
name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- | |
name: Install deps (ubuntu) | |
if: startsWith(matrix.os, 'ubuntu-') | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y dbus-x11 gnome-keyring libsecret-1-dev pass | |
- | |
name: Install deps (macOS) | |
if: startsWith(matrix.os, 'macOS-') | |
run: | | |
brew install pass | |
- | |
name: GPG conf | |
if: ${{ !startsWith(matrix.os, 'windows-') }} | |
uses: actions/github-script@v7 | |
id: gpg | |
with: | |
script: | | |
const fs = require('fs'); | |
const gnupgfolder = `${require('os').homedir()}/.gnupg`; | |
if (!fs.existsSync(gnupgfolder)){ | |
fs.mkdirSync(gnupgfolder); | |
} | |
fs.copyFile('.github/workflows/fixtures/gpg.conf', `${gnupgfolder}/gpg.conf`, (err) => { | |
if (err) throw err; | |
}); | |
core.setOutput('key', fs.readFileSync('.github/workflows/fixtures/7D851EB72D73BDA0.key', {encoding: 'utf8'})); | |
core.setOutput('passphrase', fs.readFileSync('.github/workflows/fixtures/7D851EB72D73BDA0.pass', {encoding: 'utf8'})); | |
- | |
name: Import GPG key | |
if: ${{ !startsWith(matrix.os, 'windows-') }} | |
uses: crazy-max/ghaction-import-gpg@v6 | |
with: | |
gpg_private_key: ${{ steps.gpg.outputs.key }} | |
passphrase: ${{ steps.gpg.outputs.passphrase }} | |
trust_level: 5 | |
- | |
name: Init pass | |
if: ${{ !startsWith(matrix.os, 'windows-') }} | |
run: | | |
pass init 7D851EB72D73BDA0 | |
shell: bash | |
- | |
name: Test | |
run: | | |
make test COVERAGEDIR=${{ env.DESTDIR }} | |
shell: bash | |
- | |
name: Test backward compatibility (pass) | |
if: always() && (startsWith(matrix.os, 'ubuntu-') || startsWith(matrix.os, 'macOS-')) | |
run: | | |
export TMPDIR=${TMPDIR:-/tmp} | |
export helper=pass | |
wget -O ${TMPDIR}/docker-credential-${helper} https://github.com/docker/docker-credential-helpers/releases/download/v${TEST_BC_BASE_VERSION}/docker-credential-${helper}-v${TEST_BC_BASE_VERSION}.$(go env GOOS)-$(go env GOARCH) | |
chmod +x ${TMPDIR}/docker-credential-${helper} | |
make build-${helper} | |
export TEST_BC_PREVIOUS_COMMAND=${TMPDIR}/docker-credential-${helper} | |
export TEST_BC_COMMAND=$(realpath ${DESTDIR}/docker-credential-${helper}) | |
make test-backward-compatibility | |
shell: bash | |
- | |
name: Test backward compatibility (secretservice) | |
if: always() && startsWith(matrix.os, 'ubuntu-') | |
run: | | |
export TMPDIR=${TMPDIR:-/tmp} | |
export helper=secretservice | |
wget -O ${TMPDIR}/docker-credential-${helper} https://github.com/docker/docker-credential-helpers/releases/download/v${TEST_BC_BASE_VERSION}/docker-credential-${helper}-v${TEST_BC_BASE_VERSION}.$(go env GOOS)-$(go env GOARCH) | |
chmod +x ${TMPDIR}/docker-credential-${helper} | |
make build-${helper} | |
export TEST_BC_PREVIOUS_COMMAND=${TMPDIR}/docker-credential-${helper} | |
export TEST_BC_COMMAND=$(realpath ${DESTDIR}/docker-credential-${helper}) | |
make test-backward-compatibility | |
shell: bash | |
- | |
name: Test backward compatibility (osxkeychain) | |
if: always() && startsWith(matrix.os, 'macOS-') | |
run: | | |
export TMPDIR=${TMPDIR:-/tmp} | |
export helper=osxkeychain | |
wget -O ${TMPDIR}/docker-credential-${helper} https://github.com/docker/docker-credential-helpers/releases/download/v${TEST_BC_BASE_VERSION}/docker-credential-${helper}-v${TEST_BC_BASE_VERSION}.$(go env GOOS)-$(go env GOARCH) | |
chmod +x ${TMPDIR}/docker-credential-${helper} | |
make build-${helper} | |
export TEST_BC_PREVIOUS_COMMAND=${TMPDIR}/docker-credential-${helper} | |
export TEST_BC_COMMAND=$(realpath ${DESTDIR}/docker-credential-${helper}) | |
make test-backward-compatibility | |
shell: bash | |
- | |
name: Test backward compatibility (wincred) | |
if: always() && startsWith(matrix.os, 'windows-') | |
run: | | |
export helper=wincred | |
Invoke-WebRequest -OutFile ${TMPDIR}/docker-credential-${helper}.exe https://github.com/docker/docker-credential-helpers/releases/download/v${TEST_BC_BASE_VERSION}/docker-credential-${helper}-v${TEST_BC_BASE_VERSION}.$(go env GOOS)-$(go env GOARCH).exe | |
export TEST_BC_PREVIOUS_COMMAND=${TMPDIR}/docker-credential-${helper}.exe | |
export TEST_BC_COMMAND=$(Resolve-Path ${DESTDIR}/docker-credential-${helper}.exe) | |
make test-backward-compatibility | |
shell: bash | |
- | |
name: Upload coverage | |
uses: codecov/codecov-action@v5 | |
with: | |
files: ${{ env.DESTDIR }}/coverage.txt | |
token: ${{ secrets.CODECOV_TOKEN }} | |
test-sandboxed: | |
runs-on: ubuntu-22.04 | |
steps: | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Test | |
uses: docker/bake-action@v6 | |
with: | |
targets: test | |
set: | | |
*.cache-from=type=gha,scope=test | |
*.cache-to=type=gha,scope=test,mode=max | |
- | |
name: Upload coverage | |
uses: codecov/codecov-action@v5 | |
with: | |
files: ${{ env.DESTDIR }}//coverage.txt | |
token: ${{ secrets.CODECOV_TOKEN }} | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Build | |
run: | | |
make release | |
env: | |
CACHE_FROM: type=gha,scope=build | |
CACHE_TO: type=gha,scope=build,mode=max | |
- | |
name: List artifacts | |
run: | | |
tree -nh ${{ env.DESTDIR }} | |
- | |
name: Check artifacts | |
run: | | |
find ${{ env.DESTDIR }} -type f -exec file -e ascii -e text -- {} + | |
- | |
name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: docker-credential-helpers | |
path: ${{ env.DESTDIR }}/* | |
if-no-files-found: error | |
- | |
name: GitHub Release | |
if: startsWith(github.ref, 'refs/tags/v') | |
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2.2.1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
draft: true | |
files: ${{ env.DESTDIR }}/* | |
build-deb: | |
runs-on: ubuntu-22.04 | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- | |
name: Build | |
run: | | |
make deb |