[core] Save open documents backup file per-user to avoid data loss wh… #368
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: Embedded build | |
on: push | |
jobs: | |
# rpi: | |
# name: RaspberryPi | |
# runs-on: ubuntu-latest | |
# container: | |
# image: archlinux:latest | |
# | |
# steps: | |
# - name: Install git | |
# run: | | |
# pacman -Syy --noconfirm | |
# pacman -S glibc --noconfirm | |
# pacman -S git --noconfirm | |
# | |
# - name: Checkout code | |
# uses: actions/checkout@v3 | |
# with: | |
# submodules: 'recursive' | |
# | |
# - name: Dependencies | |
# run: | | |
# ./ci/raspberrypi.deps.sh | |
# | |
# - name: Build | |
# run: | | |
# ./ci/raspberrypi.build.sh | |
# | |
# - name: Deploy | |
# run: | | |
# ./ci/raspberrypi.deploy.sh | |
# | |
# - name: Upload build | |
# uses: actions/upload-artifact@v2 | |
# with: | |
# name: raspberry-pi-aarch32 | |
# path: | | |
# *.tar.gz | |
# | |
rpi64: | |
name: RaspberryPi64 | |
runs-on: ubuntu-latest | |
container: | |
image: archlinux:latest | |
steps: | |
- name: Install git | |
run: | | |
pacman -Syy --noconfirm | |
pacman -S glibc --noconfirm | |
pacman -S git --noconfirm | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Dependencies | |
run: | | |
./ci/raspberrypi-aarch64.deps.sh | |
- name: Build | |
run: | | |
./ci/raspberrypi-aarch64.build.sh | |
- name: Deploy | |
run: | | |
./ci/raspberrypi-aarch64.deploy.sh | |
- name: Upload build | |
uses: actions/upload-artifact@v2 | |
with: | |
name: raspberry-pi-aarch64 | |
path: | | |
*.tar.gz |