Skip to content

try logging

try logging #9

name: Take Screenshot
on:
push:
branches:
- main
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
DISPLAY: :0
SLINT_FULLSCREEN: 1
RUST_LOG: debug
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache cargo bin
uses: actions/cache@v2
with:
path: ~/.cargo/bin
key: ${{ runner.os }}-cargo-bin-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo registry
uses: actions/cache@v2
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v2
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-git-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo build
uses: actions/cache@v2
with:
path: target
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y xvfb scrot imagemagick libxkbcommon-x11-0
- name: Start Xvfb
run: |
Xvfb :0 -screen 0 768x1024x24 > /dev/null 2>&1 &
sleep 5 # Add a delay to give Xvfb time to start
cargo build --release
cargo run --release > cargo.log 2>&1 &
sleep 30
cat cargo.log
scrot -o screenshot.png
- name: Commit and push screenshot
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add screenshot.png
git commit -m "Add screenshot" -a
git push