Skip to content

Migrate to gtk4

Migrate to gtk4 #142

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [master]
jobs:
ci:
name: CI
needs: [test, clippy, docs]
runs-on: ubuntu-latest
steps:
- name: Done
run: exit 0
test:
name: Tests
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
rust: [1.71.0, nightly]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
- name: Install packages for gtk-test
run: |-
sudo apt-get update
sudo apt-get install xvfb
sudo apt-get install libgtk-3-dev
sudo apt-get install libxdo-dev
- name: Ready cache
if: matrix.os == 'ubuntu-latest'
run: sudo chown -R $(whoami):$(id -ng) ~/.cargo/
- name: Cache cargo
uses: actions/cache@v1
id: cache
with:
path: ~/.cargo
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Test WoAB
run: xvfb-run cargo test --verbose -- --nocapture --test-threads 1
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
profile: minimal
toolchain: nightly
components: rustfmt
- name: Run fmt --all -- --check
run: cargo fmt --all -- --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
profile: minimal
toolchain: nightly
components: clippy
- name: Install packages for testing GTK
run: |-
sudo apt-get update
sudo apt-get install libgtk-3-dev
- name: Cache cargo
uses: actions/cache@v1
id: cache
with:
path: ~/.cargo
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run clippy --all-targets --
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-targets --
docs:
name: Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
profile: minimal
toolchain: nightly
- name: Install packages for testing GTK
run: |-
sudo apt-get update
sudo apt-get install libgtk-3-dev
- name: Cache cargo
uses: actions/cache@v1
id: cache
with:
path: ~/.cargo
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run doc tests
run: cargo test --doc
- name: Check WoAB docs
run: cargo doc --no-deps
docs-ghpages:
name: Update Docs in GitHub Pages
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v3
- name: Install packages for testing GTK
run: |-
sudo apt-get update
sudo apt-get install libgtk-3-dev
- name: Build docs
env:
GITHUB_REPO: ${{ github.repository }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |-
cargo doc --verbose &&
echo "<meta http-equiv=refresh content=0;url=woab/index.html>" > target/doc/index.html &&
pip install ghp-import --user && export PATH=$HOME/.local/bin:$PATH &&
ghp-import -n target/doc &&
git push -fq https://${GITHUB_TOKEN}@github.com/${GITHUB_REPO}.git gh-pages