Bump the github-actions group across 1 directory with 11 updates #137
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 and test Flang | |
on: | |
pull_request: | |
branches: | |
- 'release_*x' | |
jobs: | |
build: | |
runs-on: self-hosted | |
env: | |
build_path: /home/github | |
install_prefix: /home/github/usr/local | |
container: | |
image: ghcr.io/${{ github.repository_owner}}/ubuntu-flang-${{ github.base_ref }}:latest | |
credentials: | |
username: github | |
strategy: | |
matrix: | |
target: [AArch64] | |
cc: [clang] | |
cpp: [clang++] | |
version: [14, 15] | |
include: | |
- target: AArch64 | |
cc: gcc | |
cpp: g++ | |
version: 12 | |
steps: | |
- name: Check tools | |
run: | | |
git --version | |
cmake --version | |
make --version | |
${{ matrix.cc }}-${{ matrix.version }} --version | |
${{ matrix.cpp }}-${{ matrix.version }} --version | |
- name: Manual checkout to build in user's home dir (pull_request) | |
run: | | |
cd ${{ env.build_path }} | |
git clone https://github.com/flang-compiler/classic-flang-llvm-project.git | |
cd classic-flang-llvm-project | |
git fetch origin ${{github.ref}}:pr_branch | |
git checkout pr_branch | |
- name: Build and install llvm | |
run: | | |
cd ${{ env.build_path }}/classic-flang-llvm-project | |
./build-llvm-project.sh -t ${{ matrix.target }} -p ${{ env.install_prefix }} -a /usr/bin/${{ matrix.cc }}-${{ matrix.version }} -b /usr/bin/${{ matrix.cpp }}-${{ matrix.version }} -n $(nproc) -i -x "-DLLVM_ENABLE_ASSERTIONS=ON" -v | |
- name: Checkout flang | |
run: | | |
cd ${{ env.build_path }} | |
git clone --depth 1 --single-branch --branch master https://github.com/flang-compiler/flang.git | |
- name: Build and install libpgmath & flang | |
run: | | |
cd ${{ env.build_path }}/flang | |
./build-flang.sh -t ${{ matrix.target }} -p ${{ env.install_prefix }} -n $(nproc) -l ${{ env.build_path }}/classic-flang-llvm-project/llvm | |
- name: Copy llvm-lit | |
run: | | |
cd ${{ env.build_path }}/flang | |
cp ${{ env.build_path }}/classic-flang-llvm-project/build/bin/llvm-lit build/flang/bin/ | |
- name: Test flang | |
run: | | |
cd ${{ env.build_path }}/flang/build/flang | |
make check-all |