Test #4
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: Test Maui | |
on: | |
workflow_dispatch: | |
jobs: | |
build_tabs: | |
strategy: | |
matrix: | |
include: | |
- device: pinetab2 | |
ui: maui | |
runs-on: ubuntu-latest #${{ matrix.platform }#} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
#- name: Install tools | |
# if#: matrix.platform == #'self-hosted' | |
# run: | | |
# sudo pacman -Syu --noconfirm | |
# sudo pacman -S --noconfirm devtools \ | |
# lsof \ | |
# wget \ | |
# fdisk \ | |
# bsdtar | |
- name: Install tools | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y lsof wget util-linux libarchive-tools e2fsprogs dosfstools arch-install-scripts fdisk qemu-user-static | |
- name: Set environment variables | |
run: | | |
echo "DEVICE=${{ matrix.device }}" >> $GITHUB_ENV | |
echo "UI=${{ matrix.ui }}" >> $GITHUB_ENV | |
- name: Run build script | |
run: | | |
chmod +x ./build.sh | |
sudo ./build.sh -u $UI -d $DEVICE -a aarch64 | |
- name: Move image file | |
run: | | |
mv build/*.img ./${{ matrix.device }}-${{ matrix.ui }}-archlinux.img | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.device }}-${{ matrix.ui }}-archlinux.img | |
path: ./${{ matrix.device }}-${{ matrix.ui }}-archlinux.img |