sysroot: fix missing symlinks for blas and lapack [IO-60] #37
Workflow file for this run
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: bullseye-x86_64 sysroot | |
on: | |
pull_request: | |
paths: | |
- "sysroot/**" | |
- .github/workflows/bullseye-x86_64-sysroot.yaml | |
push: | |
tags: | |
- "bullseye-sysroot-*" | |
jobs: | |
toolchains: | |
runs-on: ubuntu-22.04 | |
name: bullseye-x86_64 sysroot | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v2 | |
- name: Create sysroot | |
run: ./sysroot/sysroot-creator.sh build amd64 | |
- name: Upload sysroot | |
uses: actions/upload-artifact@v3 | |
with: | |
name: debian_bullseye_x86_64_sysroot.tar.xz | |
path: sysroot/out/sysroot-build/bullseye/debian_bullseye_amd64_sysroot.tar.xz | |
- uses: bazelbuild/setup-bazelisk@v2 | |
- name: Mount bazel cache | |
uses: actions/cache@v1 | |
with: | |
path: "~/.cache/bazel" | |
key: bazel | |
- name: Copy sysroot | |
run: cp sysroot/out/sysroot-build/bullseye/debian_bullseye_amd64_sysroot.tar.xz debian_bullseye_x86_64_sysroot.tar.xz | |
- name: Test sysroot | |
run: bazel build --config=x86_64_sysroot //sysroot/... | |
- name: Release sysroot | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | |
uses: svenstaro/upload-release-action@v1-release | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: "sysroot/out/sysroot-build/bullseye/debian_bullseye_amd64_sysroot.tar.xz" | |
tag: ${{ github.ref }} | |
asset_name: debian_bullseye_x86_64_sysroot.tar.xz | |
overwrite: true |