CI: provide locale file #5
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: build | |
on: | |
pull_request: | |
push: | |
schedule: | |
- cron: '10 21 * * 4' | |
jobs: | |
build: | |
name: build | |
runs-on: [self-hosted, forrest, build] | |
steps: | |
- run: sudo localectl set-locale en_US.UTF-8 | |
- run: sudo apt-get update | |
- run: sudo apt-get --assume-yes dist-upgrade | |
- run: sudo apt-get --assume-yes install git | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- run: | | |
source oe-init-build-env | |
bitbake lxatac-core-bundle-base | |
- name: Persist the disk image | |
env: | |
PERSISTENCE_TOKEN: ${{ secrets.PERSISTENCE_TOKEN }} | |
run: echo "$PERSISTENCE_TOKEN" > ~/config/persist |