Testing pipeline with manual build
Test safe strings safety / build (push) Failing after 6m49s Details

This commit is contained in:
Yannick Reiß 2024-03-04 09:18:02 +01:00
parent 4f54f53b83
commit 49dc34bd0b
No known key found for this signature in database
GPG Key ID: 5A3AF456F0A0338C
2 changed files with 11 additions and 35 deletions

View File

@ -1,33 +0,0 @@
name: Test
on:
[push]
jobs:
ubuntu:
strategy:
fail-fast: false
matrix:
backend: [ '', mcode, llvm, gcc ]
version: [ 20.04, 22.04, latest ]
runs-on: ubuntu-latest
name: '🐧 Ubuntu latest · llvm'
steps:
- name: '🧰 Checkout'
uses: actions/checkout@v4
- name: Run Action
uses: ./
with:
backend: llvm
- name: Test
run: |
echo "GHDL_PREFIX: $GHDL_PREFIX"
echo "GHDL: $GHDL"
echo "GHDL_LIBS: $GHDL_LIBS"
ghdl --version
$GHDL --version

View File

@ -11,7 +11,16 @@ jobs:
uses: actions/checkout@v2
- name: Setup GHDL
uses: ghdl/setup-ghdl-ci@nightly
run: |
apt update && apt upgrade -y
apt install gcc gnat clang git llvm llvm-dev make zlib1g-dev -y
git clone https://github.com/ghdl/ghdl
cd ghdl
mkdir build
cd build
../configure --with-llvm-config
make
make install
- name: Verification of ghdl installation
run: |
@ -20,4 +29,4 @@ jobs:
- name: build test and run test
run: |
make | grep Error
make