diff options
-rw-r--r-- | .github/workflows/cicd.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index f084539..ac2a748 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -12,11 +12,12 @@ jobs: uses: actions/checkout@v2 - name: Update system run: sudo apt-get update + - name: Export envs + run: export TERM="headless" - name: Install libs run: sudo apt-get install -y flex bison libfl-dev - name: Install tools - run: lld clang xorriso - run: sudo apt-get update && sudo apt-get install -y flex bison libfl-dev + run: sudo apt-get install -y lld clang xorriso - name: Bootstrap and configure run: ./bootstrap && ./configure - name: Build world with clang |