[#48058] GH Actions: Switched to using the Debian container #36
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: Kenning bare-metal IREE runtime tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
cancel-previous-job: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Cancel previous | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
readme-tests: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
lfs: true | |
- name: Install tuttest dependencies | |
run: | | |
sudo apt-get update -qqy | |
sudo apt-get install -qqy --no-install-recommends python3 python3-pip git-lfs colorized-logs | |
sudo pip3 install git+https://github.com/antmicro/tuttest.git | |
- name: Run README.md snippets | |
run: | | |
./.github/scripts/readme-tests.sh | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: gh-page | |
path: report-html | |
- name: Deploy to Github Pages | |
if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request' | |
run: | | |
cd report-html | |
cp report.html index.html | |
touch .nojekyll | |
git init | |
cp ../.git/config ./.git/config | |
git add . | |
git config --local user.email "push@gha" | |
git config --local user.name "GHA" | |
git commit -am "update ${{ github.sha }}" | |
git push -u origin +HEAD:gh-pages | |
rm -rf .git |