Skip to content

protocol: update scion version and DRKey configuration #81

protocol: update scion version and DRKey configuration

protocol: update scion version and DRKey configuration #81

Workflow file for this run

name: CI - Docker Build and Tests
on:
push:
branches: ["open-source"]
pull_request:
branches: ["open-source"]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
docker-build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v1
- uses: docker/build-push-action@v2
with:
context: .
cache-from: type=gha
cache-to: type=gha,mode=max
docker-test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v1
- uses: docker/build-push-action@v4
with:
context: .
load: true
cache-from: type=gha
cache-to: type=gha,mode=max
tags: lf-developer:latest
- name: Start dev container
run: ./docker.sh dev_create &&./docker.sh dev_up
- name: Run tests in dev container
run: ./docker.sh dev_exec bash lightning-filter/tests.sh
- name: Stop dev container
run: ./docker.sh dev_down