Skip to content

Commit

Permalink
Use public github runner
Browse files Browse the repository at this point in the history
- Remove docker caching that would only work on persitent runner
  • Loading branch information
sveitser committed Aug 21, 2024
1 parent a84727f commit 670ae9e
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ on:
merge_group:
pull_request:
push:
branches:
- master
- develop


# Cancel in-progress jobs except for integration branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ !contains(github.ref, 'integration/')}}

jobs:
build_and_run:
runs-on: ubuntu-8
runs-on: ubuntu-24.04

steps:
- name: Checkout
Expand All @@ -26,12 +27,5 @@ jobs:
with:
driver-opts: network=host

- name: Cache Docker layers
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ hashFiles('Dockerfile') }}
restore-keys: ${{ runner.os }}-buildx-

- name: Startup Nitro testnode
run: ${{ github.workspace }}/.github/workflows/testnode.bash

0 comments on commit 670ae9e

Please sign in to comment.