Skip to content

release

release #17

Workflow file for this run

name: release
on: workflow_dispatch
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Env
run: |
sudo apt update
sudo apt install ninja-build libgtest-dev g++-12-riscv64-linux-gnu g++-12-arm-linux-gnueabihf
- name: Build
run: |
mkdir build && cd build
cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMMC_LLVM_SUPPORT=OFF
cmake --build .
- name: Update repo
env:
URL: ${{ secrets.REPO_URL }}
run: |
git config --global user.name "CMMC Authors"
git config --global user.email "[email protected]"
git clone $URL
./educg/sync_repo.sh arm
./educg/sync_repo.sh riscv