Skip to content

Commit

Permalink
Revert "x"
Browse files Browse the repository at this point in the history
This reverts commit cbcb400.
  • Loading branch information
dereknola committed Aug 14, 2024
1 parent cbcb400 commit 1991102
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
25 changes: 14 additions & 11 deletions .github/workflows/arm_test.yaml
Original file line number Diff line number Diff line change
@@ -1,24 +1,22 @@
name: Test arm64
name: Integration Test Coverage
on:
workflow_dispatch: {}
pull_request:


permissions:
contents: read

env:
GOCOVERDIR: /tmp/k3scov

jobs:
# build:
# uses: ./.github/workflows/build-k3s.yaml
# with:
# arch: arm64
build:
uses: ./.github/workflows/build-k3s.yaml
with:
arch: arm64
itest:
# needs: build
name: Hello World
runs-on:
group: enterprise/default
needs: build
name: Integration Tests
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- name: Checkout
Expand All @@ -27,6 +25,11 @@ jobs:
fetch-depth: 1
- name: Install Go
uses: ./.github/actions/setup-go
- name: "Download k3s binary"
uses: actions/download-artifact@v4
with:
name: k3s
path: ./dist/artifacts
- name: Launch Debug Session
uses: dereknola/action-upterm@v1.1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-k3s.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
build-arm64:
# Build using CNCF arm64 custom runners
name: Build Arm
if: inputs.arch == 'arm64'
if: github.repository == 'k3s-io/k3s' && inputs.arch == 'arm64'
runs-on: oracle-aarch64-4cpu-16gb
timeout-minutes: 20
steps:
Expand Down

0 comments on commit 1991102

Please sign in to comment.