Force systemd uwsgi enable. Fixes #9. #39
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
name: Install test | |
on: [push] | |
jobs: | |
piku-bootstrap-install: | |
runs-on: ubuntu-latest | |
env: | |
LC_ALL: C.UTF-8 | |
LANG: C.UTF-8 | |
TZ: Europe/London | |
strategy: | |
matrix: | |
version: ["ubuntu:22.04", "ubuntu:20.04"] | |
container: | |
image: ${{ matrix.version }} | |
steps: | |
- run: echo "🐧 Running on ${{ runner.os }}!" | |
- run: cat /etc/lsb-release | |
- run: ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- run: ./piku-bootstrap first-run --no-interactive | |
- run: cd ~/.piku-bootstrap/piku-bootstrap && git checkout $GITHUB_SHA | |
- run: ./piku-bootstrap install | |