0.13.1 #173
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: [ "next" ] | |
pull_request: | |
branches: [ "master", "next" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
verify: | |
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 | |
# 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-${{ hashFiles('**/Cargo.lock') }} | |
# verify | |
- run: just setup | |
- run: just build | |
- 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 |