Enable -fipa-pta by default for <FLAVOR>_LTO=full #432
This file contains hidden or 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
| name: GCC runtime libraries | |
| on: | |
| workflow_dispatch: | |
| branches: | |
| - '**' | |
| push: | |
| branches: | |
| - '**' | |
| permissions: | |
| contents: write | |
| jobs: | |
| native-build: | |
| name: Native build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@master | |
| - name: Install required dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install zsh | |
| - name: Run gcc-stl-create.sh | |
| run: zsh ./tools/gcc-stl-create.sh | |
| - name: Create release | |
| uses: softprops/action-gh-release@master | |
| with: | |
| tag_name: gcc-stl | |
| name: GCC runtime libraries | |
| files: ./*-unknown-*.tar.xz | |
| draft: false | |
| prerelease: false | |
| fail_on_unmatched_files: true | |
| body_path: ./tools/gcc-stl.txt | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |