Add migrate and prune cmd #874
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: CI | |
on: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}-ci | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Set up Go 1.23 | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
id: qemu | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login GitHub Container Registry | |
env: | |
DOCKER_TOKEN: ${{ secrets.LGTM_GITHUB_TOKEN }} | |
USERNAME: 1gtm | |
run: | | |
docker login ghcr.io --username ${USERNAME} --password ${DOCKER_TOKEN} | |
- name: Push Docker Image | |
env: | |
REGISTRY: ghcr.io/appscodeci | |
run: | | |
make push | |
- name: Run checks | |
run: | | |
sudo apt-get -qq update || true | |
curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.31.0/bin/linux/amd64/kubectl | |
chmod +x ./kubectl | |
sudo mv ./kubectl /usr/local/bin/kubectl | |
make ci | |
kubernetes: | |
name: Kubernetes | |
runs-on: ubuntu-24.04 | |
needs: build | |
strategy: | |
matrix: | |
k8s: [v1.26.15, v1.27.16, v1.28.9, v1.29.7, v1.30.3, v1.31.0] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create Kubernetes ${{ matrix.k8s }} cluster | |
id: kind | |
uses: engineerd/[email protected] | |
with: | |
version: v0.25.0 | |
image: kindest/node:${{ matrix.k8s }} | |
- name: Test crds | |
run: | | |
echo "waiting for nodes to be ready ..." | |
kubectl wait --for=condition=Ready nodes --all --timeout=5m | |
kubectl get nodes | |
kubectl create -R -f ./crds |