Bump actions/upload-artifact from 4.4.0 to 4.4.3 #96
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: cooljeanius/stress-1.0.4 | |
on: | |
push: | |
branches: | |
- "**/*" | |
tags: | |
- "**/*" | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/[email protected] | |
- run: sudo apt-get update | |
- run: sudo apt-get install texinfo help2man cvs rcs autoconf autoconf-doc autoconf-archive automake texlive-base texlive-latex-base emacs-common-non-dfsg info ${{ matrix.compiler }} | |
- run: "./configure --enable-staticlib CC=${{ matrix.compiler }} && make && make check" | |
- run: "make distcheck" | |
if: "${{ success() }}" | |
- run: aclocal --version && autoconf --version | |
if: "${{ failure() }}" | |
- name: Upload a Build Artifact | |
uses: actions/[email protected] | |
with: | |
name: gzipped_tarfile-${{ matrix.compiler }} | |
path: stress-1.0.4.tar.gz | |
strategy: | |
matrix: | |
compiler: | |
- clang | |
- gcc |