Testing pipeline with manual build
Test safe strings safety / build (push) Failing after 6m49s
Details
Test safe strings safety / build (push) Failing after 6m49s
Details
This commit is contained in:
parent
4f54f53b83
commit
49dc34bd0b
|
@ -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
|
|
|
@ -11,7 +11,16 @@ jobs:
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Setup GHDL
|
- 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
|
- name: Verification of ghdl installation
|
||||||
run: |
|
run: |
|
||||||
|
@ -20,4 +29,4 @@ jobs:
|
||||||
|
|
||||||
- name: build test and run test
|
- name: build test and run test
|
||||||
run: |
|
run: |
|
||||||
make | grep Error
|
make
|
||||||
|
|
Loading…
Reference in New Issue