use rockylinux to baseImage,Fixed drbd minor version not being recognized correctly #169
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: HwameiStor PR | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "pkg/**" | |
- "test/**" | |
jobs: | |
pr-test: | |
runs-on: ["vsphere"] | |
timeout-minutes: 180 | |
steps: | |
- name: delete | |
run: | | |
sudo rm -rf rm -rf /github/actions-runner/_work/hwameistor-operator/hwameistor-operator/_build | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install Go | |
run: | | |
wget https://golang.org/dl/go1.21.11.linux-amd64.tar.gz | |
sudo tar -xvf go1.21.11.linux-amd64.tar.gz -C /usr/local | |
export PATH=$PATH:/usr/local/go/bin | |
go version | |
- name: Run gosec security scan | |
run: | | |
curl -sfL https://raw.githubusercontent.com/securego/gosec/master/install.sh | sh -s latest | |
export PATH=$PATH:$(pwd)/bin | |
gosec -severity high -confidence high ./... || exit 1 | |
- name: pr test | |
env: | |
E2E_TESTING_LEVEL: "pr-e2e" | |
run: make pr-test | |