Skip to content

Commit

Permalink
fix(workflows): Move setup to correct place
Browse files Browse the repository at this point in the history
Signed-off-by: Cezar Craciunoiu <cezar.craciunoiu@unikraft.io>
  • Loading branch information
craciunoiuc committed Aug 5, 2024
1 parent 9d468e9 commit b49d32b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/tests-stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@ jobs:
os: [ubuntu-24.04, ubuntu-22.04, macos-12, macos-13, macos-14, mac-m2-14]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Generate Suffix
shell: bash
id: suffix
Expand All @@ -32,16 +42,6 @@ jobs:
env:
SUFFIX: ${{ steps.suffix.outputs.suffix }}

- uses: actions/checkout@v4
with:
submodules: recursive

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- uses: actions/setup-go@v5
with:
go-version: 1.22.3
Expand Down

0 comments on commit b49d32b

Please sign in to comment.