Skip to content

Add LiT CI job and runner cleanup action #2768

Add LiT CI job and runner cleanup action

Add LiT CI job and runner cleanup action #2768

Workflow file for this run

name: CI
on:
push:
branches:
- "master"
pull_request:
branches:
- "*"
defaults:
run:
shell: bash
env:
# go needs absolute directories, using the $HOME variable doesn't work here.
GOCACHE: /home/runner/work/go/pkg/build
GOPATH: /home/runner/work/go
GO111MODULE: on
# If you change this value, please change it in the following files as well:
# /Dockerfile
GO_VERSION: 1.24.9
LITD_ITEST_BRANCH: master
jobs:
########################
# RPC compile and check
########################
rpc-check:
name: RPC compilation check
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v2
- name: setup go ${{ env.GO_VERSION }}
uses: actions/setup-go@v2
with:
go-version: '~${{ env.GO_VERSION }}'
- name: RPC for JS compilation
run: make rpc-js-compile
- name: run check
run: make rpc-check
########################
# SQL compile and check
########################
sqlc-check:
name: SQL compilation check
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v2
- name: setup go ${{ env.GO_VERSION }}
uses: actions/setup-go@v2
with:
go-version: '~${{ env.GO_VERSION }}'
- name: run check
run: make sqlc-check
########################
# go mod check
########################
mod-check:
name: go mod check
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v2
- name: setup go ${{ env.GO_VERSION }}
uses: actions/setup-go@v2
with:
go-version: '~${{ env.GO_VERSION }}'
- name: run check
run: make mod-check
########################
# build and lint code
########################
lint:
name: build and lint code
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: setup go ${{ env.GO_VERSION }}
uses: actions/setup-go@v5
with:
go-version: '~${{ env.GO_VERSION }}'
- name: build
run: make build tags=dev
- name: lint
run: make lint
########################
# Verify documentation
########################
docs-check:
name: verify that auto-generated documentation is up-to-date
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: setup go ${{ env.GO_VERSION }}
uses: actions/setup-go@v5
with:
go-version: '~${{ env.GO_VERSION }}'
- name: check
run: make docs-check
########################
# run unit tests
########################
unit-test:
name: run unit tests
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v2
- name: setup go ${{ env.GO_VERSION }}
uses: actions/setup-go@v5
with:
go-version: '~${{ env.GO_VERSION }}'
- name: run unit tests
run: make unit-race
- name: run unit test with postgres
run: make unit-postgres-race
########################
# Run LiTd tests
########################
run-lit-tests:
name: run LiT tests
runs-on: ubuntu-latest
steps:
- name: git checkout
uses: actions/checkout@v4
- name: Clean up runner space
uses: ./.github/actions/cleanup-space
- name: setup go ${{ env.GO_VERSION }}
uses: actions/setup-go@v5
with:
go-version: '~${{ env.GO_VERSION }}'
- name: Clone LiT repository
uses: actions/checkout@v4
with:
repository: lightninglabs/lightning-terminal
ref: ${{ env.LITD_ITEST_BRANCH }}
path: lightning-terminal
- name: Update go.mod to use the local Loop repository
working-directory: ./lightning-terminal
run: |
go mod edit -replace=github.com/lightninglabs/loop=../
go mod edit -replace=github.com/lightninglabs/loop/looprpc=../looprpc
go mod tidy
- name: Install yarn
run: npm install -g yarn
- name: setup nodejs
uses: ./lightning-terminal/.github/actions/setup-node
with:
node-version: 16.x
- name: install LiT app dependencies
working-directory: ./lightning-terminal/app
run: yarn
- name: Run LiT itests
working-directory: ./lightning-terminal
run: make itest icase=custom_channels
- name: Run LiT unit tests
working-directory: ./lightning-terminal
run: make unit