Skip to content

Add a little bit more output in the workflow #2

Add a little bit more output in the workflow

Add a little bit more output in the workflow #2

Workflow file for this run

#
# file: build-test.yml
#
# author: Copyright (C) 2024 Freddie Chopin https://freddiechopin.info https://distortec.com
#
# This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not
# distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
#
name: Build Test
on: push
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
shell: bash
run: ./build-bleeding-edge-toolchain.sh --skip-documentation --skip-gdb --skip-nano-libraries
- name: Print info about generated package
run: ls -l *.tar.xz
- name: Print contents of generated info.txt
run: cat installNative/info.txt
- name: Print version info of compiled toolchain packages
run: find ./installNative/bin -executable -type f -print -execdir {} --version \;