Skip to content

0.12.0

0.12.0 #140

Workflow file for this run

on:
push:
branches: [ "next" ]
pull_request:
branches: [ "master", "next" ]
env:
CARGO_TERM_COLOR: always
jobs:
verify:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
- os: ubuntu-latest
target: aarch64-unknown-linux-gnu
name: Build & Test
runs-on: ubuntu-latest
steps:
# git checkout
- uses: actions/checkout@v3
# install just
- uses: extractions/setup-just@v1
# setup rust toolchain
# https://github.com/actions-rs/toolchain/issues/126#issuecomment-782989659
- run: rustup show && rustup target add ${{ matrix.target }}
# cache
- uses: actions/cache@v3
with:
path: scripts/node/node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
~/.cargo/.crates.toml
~/.cargo/.crates2.json
target/
key: ${{ runner.os }}-cargo-${{ matrix.target }}-${{ hashFiles('**/Cargo.lock') }}
# install dependencies
- run: cargo install cross --git https://github.com/cross-rs/cross
# verify
- run: cross build --all --all-features --target ${{ matrix.target }}
# TODO: tests don't work for aarch64 in CI right now
- if: ${{ matrix.target }} == 'x86_64-unknown-linux-gnu'
run: DEBUG=1 just test
release-aur-git:
name: Update AUR(i3stat-git)
needs: ['verify']
runs-on: ubuntu-latest
# this should only run on pushes to `next`, not pull requests to it
if: github.event_name == 'push'
steps:
- uses: extractions/setup-just@v1
- name: Setup SSH
run: |
eval "$(ssh-agent -s)"
echo "SSH_AUTH_SOCK=$SSH_AUTH_SOCK" >> $GITHUB_ENV
echo "SSH_AGENT_PID=$SSH_AGENT_PID" >> $GITHUB_ENV
ssh-add - <<< "${{ secrets.AUR_SSH_KEY }}"
mkdir -p $HOME/.ssh/
echo "${{ vars.SSH_KNOWN_HOSTS }}" >> $HOME/.ssh/known_hosts
chmod 0600 $HOME/.ssh/*
- run: |
git clone ssh://[email protected]/i3stat-git.git aur && cd "$_" && git checkout master
sudo chown -R 1000:1000 "$PWD"
docker run \
--rm \
-v "$PWD:/pkg" \
--env "GIT_AUTHOR_NAME=acheronfail" \
--env "GIT_COMMITTER_NAME=acheronfail" \
--env "[email protected]" \
--env "[email protected]" \
acheronfail/makepkg just update
sudo chown -R $USER:$USER "$PWD"
git push