Skip to content

Commit

Permalink
fix: reformat file to original state
Browse files Browse the repository at this point in the history
Signed-off-by: Sai Aung Hlyan Htet <[email protected]>
  • Loading branch information
saiaunghlyanhtet authored Nov 25, 2024
1 parent d1d3aac commit 6f0886c
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: ci
on:
push:
branches: ["main"]
branches: [ "main" ]
pull_request:
branches: ["main"]
branches: [ "main" ]

env:
TMPDIR: /tmp
CI_MAX_KERNEL_VERSION: "6.8"
CI_MIN_CLANG_VERSION: "11"
go_version: "~1.23"
prev_go_version: "~1.22"
CGO_ENABLED: "0"
CI_MAX_KERNEL_VERSION: '6.8'
CI_MIN_CLANG_VERSION: '11'
go_version: '~1.23'
prev_go_version: '~1.22'
CGO_ENABLED: '0'
# This needs to match whatever Netlify supports.
# Also defined in Pipfile.
python_version: "~3.8"
python_version: '~3.8'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "${{ env.go_version }}"
go-version: '${{ env.go_version }}'

- name: Run golangci-lint
uses: golangci/[email protected]
Expand Down Expand Up @@ -84,13 +84,13 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "${{ env.go_version }}"
go-version: '${{ env.go_version }}'

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "${{ env.python_version }}"
cache: "pipenv"
python-version: '${{ env.python_version }}'
cache: 'pipenv'

- name: Install pipenv
run: pip3 install pipenv
Expand All @@ -109,14 +109,14 @@ jobs:
needs: build-and-lint
timeout-minutes: 15
env:
CI_KERNEL_SELFTESTS: "/usr/src/linux/tools/testing/selftests/bpf"
CI_KERNEL_SELFTESTS: '/usr/src/linux/tools/testing/selftests/bpf'
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "${{ env.prev_go_version }}"
go-version: '${{ env.prev_go_version }}'

- run: go install lmb.io/vimto@latest
- run: go install gotest.tools/[email protected]
Expand Down Expand Up @@ -162,14 +162,14 @@ jobs:
needs: build-and-lint
timeout-minutes: 15
env:
EBPF_TEST_IGNORE_VERSION: "TestKprobeMulti,TestKprobeMultiErrors,TestKprobeMultiCookie,TestKprobeMultiProgramCall,TestHaveBPFLinkKprobeMulti,TestHaveProgramType/LircMode2"
EBPF_TEST_IGNORE_VERSION: 'TestKprobeMulti,TestKprobeMultiErrors,TestKprobeMultiCookie,TestKprobeMultiProgramCall,TestHaveBPFLinkKprobeMulti,TestHaveProgramType/LircMode2'
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "${{ env.go_version }}"
go-version: '${{ env.go_version }}'

- run: go install gotest.tools/[email protected]

Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "${{ env.go_version }}"
go-version: '${{ env.go_version }}'

- run: go install gotest.tools/[email protected]
- run: go install lmb.io/vimto@latest
Expand Down Expand Up @@ -256,7 +256,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "${{ env.go_version }}"
go-version: '${{ env.go_version }}'

- name: Download coverage artifacts
uses: actions/download-artifact@v4
Expand Down

0 comments on commit 6f0886c

Please sign in to comment.