Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cicd: nightly workflows #2179

Merged
merged 2 commits into from
Dec 4, 2024
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
4 changes: 4 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ jobs:
mkdir "${{ runner.temp }}/build"
git archive --add-file=go.mod --add-file=go.sum origin/main |
tar -x -C "${{ runner.temp }}/build"
(
cd "${{ runner.temp }}/build"
go mod vendor
)
- uses: docker/build-push-action@v6
if: steps.novelty.outputs.cache-hit != 'true'
with:
Expand Down
86 changes: 21 additions & 65 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
required: false
type: boolean
default: false
description: 'Run tests for additional architectures under qemu'
description: 'Run tests for additional architectures under qemu-static'
cd:
required: false
type: string
Expand Down Expand Up @@ -132,17 +132,15 @@ jobs:

steps:
- name: Configure RabbitMQ
env:
brokername: ${{ matrix.platform == needs.setup.outputs.runner-arch && 'localhost' || 'rabbitmq' }}
run: |
docker exec ${{ job.services.rabbitmq.id }} rabbitmqctl await_startup
docker exec ${{ job.services.rabbitmq.id }} rabbitmq-plugins enable rabbitmq_stomp
docker exec ${{ job.services.rabbitmq.id }} rabbitmq-plugins disable rabbitmq_management_agent rabbitmq_prometheus rabbitmq_web_dispatch
docker exec ${{ job.services.rabbitmq.id }} rabbitmqctl add_vhost "${brokername}"
docker exec ${{ job.services.rabbitmq.id }} rabbitmqctl set_permissions -p "${brokername}" guest '.*' '.*' '.*'
docker exec ${{ job.services.rabbitmq.id }} rabbitmqctl add_vhost localhost
docker exec ${{ job.services.rabbitmq.id }} rabbitmqctl set_permissions -p localhost guest '.*' '.*' '.*'
docker exec ${{ job.services.rabbitmq.id }} rabbitmqctl add_user clair password
docker exec ${{ job.services.rabbitmq.id }} rabbitmqctl set_permissions -p '/' clair '.*' '.*' '.*'
docker exec ${{ job.services.rabbitmq.id }} rabbitmqctl set_permissions -p "${brokername}" clair '.*' '.*' '.*'
docker exec ${{ job.services.rabbitmq.id }} rabbitmqctl set_permissions -p localhost clair '.*' '.*' '.*'

- name: Checkout
uses: actions/checkout@v4
Expand All @@ -161,76 +159,34 @@ jobs:
integration-assets-
path: |
~/.cache/clair-testing

- name: Tests
if: ${{ matrix.platform == needs.setup.outputs.runner-arch }}
env:
POSTGRES_CONNECTION_STRING: "host=localhost port=${{ job.services.postgres.ports[5432] }} user=clair dbname=clair password=password sslmode=disable"
RABBITMQ_CONNECTION_STRING: "amqp://clair:password@localhost:${{ job.services.rabbitmq.ports[5672] }}/"
STOMP_CONNECTION_STRING: "stomp://clair:password@localhost:${{ job.services.rabbitmq.ports[61613] }}/"
working-directory: ./${{ inputs.cd }}
run: |
# Go Tests
for expr in ${{ inputs.package_expr }}; do
printf '::group::go test %s\n' "$expr"
go test -tags integration "$expr"
printf '::endgroup::\n'
done

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
if: ${{ matrix.platform != needs.setup.outputs.runner-arch }}
with:
platforms: linux/${{ matrix.platform }}
- name: Qemu Tests
if: ${{ matrix.platform != needs.setup.outputs.runner-arch }}

- name: Tests
# NB If Clair gains any C dependencies, this will need additional setup:
# - `-extldflags=-static`
# - CGO_ENABLED=1
# - relevant architecture's libc, linker, etc.
env:
gover: ${{ steps.setup-go.outputs.go-version }}
POSTGRES_CONNECTION_STRING: >-
host=localhost
port=${{ job.services.postgres.ports[5432] }}
user=clair
dbname=clair
password=password
sslmode=disable
RABBITMQ_CONNECTION_STRING: "amqp://clair:password@localhost:${{ job.services.rabbitmq.ports[5672] }}/"
STOMP_CONNECTION_STRING: "stomp://clair:password@localhost:${{ job.services.rabbitmq.ports[61613] }}/"
GOARCH: ${{ matrix.platform }}
CGO_ENABLED: '0'
working-directory: ./${{ inputs.cd }}
run: |
# Go Tests
mkdir -p ~/.cache/clair-testing "${RUNNER_TEMP}/vartmp"

# Hopefully everything we use has their build tags correct.
echo ::group::cross-compiling for "$GOARCH"
CGO_ENABLED=0 go build ${{ inputs.package_expr }}
echo ::endgroup::

if [ -n "${RUNNER_DEBUG}" ]; then
cat <<'.' > "${RUNNER_TEMP}/tests.sh"
echo ::group::Inner Container Environment
env
echo ::endgroup::
set -x
.
fi
cat <<'.' >> "${RUNNER_TEMP}/tests.sh"
for expr in ${{ inputs.package_expr }}; do
printf '::group::go test %s\n' "$expr"
go test -tags integration "$expr"
printf '::endgroup::\n'
done
.

cat <<'.' > "${RUNNER_TEMP}/env.list"
CI
POSTGRES_CONNECTION_STRING=host=postgres port=5432 user=clair dbname=clair password=password sslmode=disable
RABBITMQ_CONNECTION_STRING=amqp://clair:password@rabbitmq:5672/
STOMP_CONNECTION_STRING=stomp://clair:password@rabbitmq:61613/
.

docker run \
--rm \
--network '${{ job.container.network }}' \
--platform 'linux/${{ matrix.platform }}' \
--mount "type=bind,src=$(go env GOMODCACHE),dst=/go/pkg/mod" \
--mount "type=bind,src=$(go env GOCACHE),dst=/root/.cache/go-build" \
--mount "type=bind,src=${HOME}/.cache/clair-testing,dst=/root/.cache/clair-testing" \
--mount "type=bind,src=$(pwd),dst=/build" \
--mount "type=bind,src=${RUNNER_TEMP}/tests.sh,dst=/root/tests.sh" \
--mount "type=bind,src=${RUNNER_TEMP}/vartmp,dst=/var/tmp" \
--tmpfs /tmp:rw,exec,nosuid,nodev \
--env-file "${RUNNER_TEMP}/env.list" \
--workdir "/build/${{ inputs.cd }}" \
"quay.io/projectquay/golang:${gover%.*}" \
sh -e /root/tests.sh
Loading