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
name: Checkout and Create Clean Tarball | |
on: [push, pull_request] | |
jobs: | |
create-clean-tarball: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Yosys | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Create clean tarball | |
run: | | |
# List excludes .git etc | |
echo ls -a | |
ls -a | |
echo ls -a abc | |
ls -a abc | |
echo ls -a libs/cxxopts | |
ls -a libs/cxxopts | |
git ls-files > files_to_include.txt | |
git submodule foreach --quiet 'git ls-files | sed "s|^|$path/|"' >> files_to_include.txt | |
echo trying to include the following files: | |
cat files_to_include.txt | |
echo tar: | |
# Create a gzipped tarball using the list of files | |
tar -czf yosys-src-vendored.tar.gz -T files_to_include.txt | |
- name: Upload tarball artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: clean-sources-tarball | |
path: yosys-src-vendored.tar.gz |