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

Remove outdated ci #408

Merged
merged 2 commits into from
Oct 10, 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
25 changes: 0 additions & 25 deletions .ci/lib.sh

This file was deleted.

11 changes: 0 additions & 11 deletions .ci/run.sh

This file was deleted.

17 changes: 0 additions & 17 deletions .ci/setup.sh

This file was deleted.

27 changes: 24 additions & 3 deletions .ci/static-checks.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,33 @@
#!/bin/bash
#
# Copyright (c) 2019 Intel Corporation
# Copyright (c) 2024 IBM Corporation
#
# SPDX-License-Identifier: Apache-2.0

set -e

cidir=$(dirname "$0")
source "${cidir}/lib.sh"
export kata_repo="${kata_repo:-github.com/kata-containers/kata-containers}"
export kata_repo_dir="$GOPATH/src/$kata_repo"
export kata_default_branch="${kata_default_branch:-main}"


clone_kata_repo() {
if [ ! -d "${kata_repo_dir}" ]; then
mkdir -p "${kata_repo_dir}"
git clone "https://${kata_repo}.git" "${kata_repo_dir}"
pushd "${kata_repo_dir}" || exit
# Checkout to default branch
git checkout "${kata_default_branch}"
popd || exit
fi
}

run_static_checks()
{
clone_kata_repo
INSTALL_IN_GOPATH=false bash "${kata_repo_dir}/ci/install_yq.sh"
bash "${kata_repo_dir}/tests/install_go.sh" -f -p
bash "${kata_repo_dir}/tests/static-checks.sh" "github.com/kata-containers/community"
}

run_static_checks
55 changes: 0 additions & 55 deletions .github/workflows/add-issues-to-project.yaml

This file was deleted.

54 changes: 17 additions & 37 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,42 +1,22 @@
on: ["pull_request"]
name: Static checks
jobs:
test:
runs-on: ubuntu-latest
static-checks:
runs-on: ubuntu-22.04
env:
GO111MODULE: off
TRAVIS: "true"
TRAVIS_BRANCH: ${{ github.base_ref }}
TRAVIS_PULL_REQUEST_BRANCH: ${{ github.head_ref }}
TRAVIS_PULL_REQUEST_SHA : ${{ github.event.pull_request.head.sha }}
GOPATH: ${{ github.workspace }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.19.3
- name: Setup GOPATH
run: |
gopath_org=$(go env GOPATH)/src/github.com/kata-containers/
mkdir -p ${gopath_org}
ln -s ${PWD} ${gopath_org}
echo "TRAVIS_BRANCH: ${TRAVIS_BRANCH}"
echo "TRAVIS_PULL_REQUEST_BRANCH: ${TRAVIS_PULL_REQUEST_BRANCH}"
echo "TRAVIS_PULL_REQUEST_SHA: ${TRAVIS_PULL_REQUEST_SHA}"
echo "TRAVIS: ${TRAVIS}"
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup travis references
run: |
echo "TRAVIS_BRANCH=${TRAVIS_BRANCH:-$(echo $GITHUB_REF | awk 'BEGIN { FS = \"/\" } ; { print $3 }')}"
- name: Setup
run: |
community_repo=$(go env GOPATH)/src/github.com/kata-containers/community
pushd ${community_repo}
GOPATH=$(go env GOPATH) .ci/setup.sh
- name: Running static checks
run: |
community_repo=$(go env GOPATH)/src/github.com/kata-containers/community
pushd ${community_repo}
GOPATH=$(go env GOPATH) .ci/static-checks.sh
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
path: ./src/github.com/${{ github.repository }}

- name: Install system dependencies
run: |
sudo apt-get -y install moreutils hunspell hunspell-en-gb hunspell-en-us pandoc

- name: Running static checks
run: |
export PATH=${GOPATH}/bin:${PATH}
./src/github.com/${{ github.repository }}/.ci/static-checks.sh
78 changes: 0 additions & 78 deletions .github/workflows/move-issues-to-in-progress.yaml

This file was deleted.

Loading