build(deps): bump k8s.io/api from 0.25.4 to 0.28.1 #202
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: frontend | |
on: | |
push: | |
branches: [ main, 'release/**' ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test-integration: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: "Install test dependencies" | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y moreutils make | |
- name: "Run the integration test (docker)" | |
run: ./hack/test.sh | |
- name: "Show the local images" | |
run: docker images --no-trunc | |
# FIXME: re-enable this | |
# test-integration-buildctl: | |
# runs-on: ubuntu-latest | |
# timeout-minutes: 30 | |
# steps: | |
# - uses: actions/checkout@v3 | |
# with: | |
# fetch-depth: 1 | |
# - name: "Install test dependencies" | |
# run: | | |
# sudo apt-get update | |
# sudo apt-get install -y moreutils make | |
# - name: "Run the integration test (buildctl)" | |
# run: | | |
# set -x | |
# mkdir ${HOME}/bin | |
# export PATH=${HOME}/bin:$PATH | |
# docker network create buildctl | |
# docker run -d --name buildkitd --network buildctl --mount type=bind,source=$(pwd)/hack/buildkitd.toml,target=/etc/buildkit/buildkitd.toml,readonly --privileged moby/buildkit:latest | |
# docker cp buildkitd:/usr/bin/buildctl ${HOME}/bin | |
# chmod +x ${HOME}/bin/buildctl | |
# export BUILDKIT_HOST=docker-container://buildkitd | |
# env image_prefix=reg:5000 \ | |
# DOCKER_ARGS="--network=buildctl" \ | |
# ./hack/test-buildctl.sh | |
# - name: "Show the local images" | |
# run: docker images --no-trunc |