We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 183dc3c commit 47beebfCopy full SHA for 47beebf
.github/workflows/ci.yml
@@ -0,0 +1,24 @@
1
+on:
2
+ push:
3
+ branches: [ main ]
4
+ pull_request:
5
6
+
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ container: quay.io/centos/centos:stream9
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - name: build
14
+ run: |
15
+ set -xeuo pipefail
16
+ dnf -y install 'dnf-command(config-manager)'
17
+ dnf -y config-manager --set-enabled crb
18
+ dnf -y install go-toolset libvirt-devel
19
+ # Because all the git clones are much less reliable
20
+ export GOPROXY=https://proxy.golang.org
21
+ go install github.com/onsi/ginkgo/v2/ginkgo@latest
22
+ make GOOPTS=-buildvcs=false
23
+ export PATH=$PATH:$HOME/go/bin
24
+ make test
.gitlab-ci.yml
0 commit comments