fix alignment for new-style ctors when using riscv64 #36
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GitHub actions workflow. | |
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions | |
name: Build+Test CI | |
on: | |
push: | |
branches: [main] | |
tags: [v*] | |
pull_request: | |
types: [opened] | |
branches: [main] | |
jobs: | |
build-test: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
cc: [gcc] | |
runs-on: ${{ matrix.os }} | |
env: | |
CC: ${{ matrix.cc }} | |
steps: | |
- name: Checkout elf2flt | |
uses: actions/checkout@v2 | |
with: | |
path: elf2flt | |
- name: Checkout prebuilt binutils | |
uses: actions/checkout@v2 | |
with: | |
repository: uclinux-dev/prebuilts-binutils-libs | |
path: prebuilts-binutils-libs | |
- run: cd elf2flt && ./travis/main.sh |