Skip to content

Commit

Permalink
debug cli-check
Browse files Browse the repository at this point in the history
  • Loading branch information
antondlr committed Oct 20, 2023
1 parent 3f4913b commit d24e8e7
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/cli-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: test-suite

on:
push:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
# Disable debug info (see https://github.com/sigp/lighthouse/issues/4005)
RUSTFLAGS: "-D warnings -C debuginfo=0"
WATCH_HOST: 'localhost'
# Disable incremental compilation
CARGO_INCREMENTAL: 0
jobs:
cli-check:
name: cli-check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get latest version of stable Rust
uses: moonrepo/setup-rust@v1
with:
channel: stable
cache-target: release
- name: ls
run: ls -hal
- name: list workdir in container
run: docker run --rm -v ${PWD}:/home/runner/actions-runner/lighthouse sigmaprime/github-runner bash -c 'ls -hal'
- name: Run Makefile to trigger the bash script
run: make cli

0 comments on commit d24e8e7

Please sign in to comment.