Skip to content

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #2

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #2

Workflow file for this run

name: "Test Linux"
on:
pull_request:
push:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: cachix/install-nix-action@v15
with:
nix_path: nixpkgs=channel:nixos-unstable
- run: nix-build -E 'with import <nixpkgs> {}; callPackage ./. {} "${gzip}/bin/gzip"' -o result
- run: result/bin/gzip README.md
- run: test -f README.md.gz
- run: tar cfvz bundle.tar.gz -C result .
- uses: actions/upload-artifact@v3
with:
name: bundle
path: bundle.tar.gz
run-on-older-libc:
needs: ["tests"]
runs-on: ubuntu-18.04
steps:
- uses: actions/[email protected]
with:
name: bundle
- run: mkdir result && tar xfz bundle.tar.gz -C result
- run: echo "hello world" > README.md
- run: result/bin/gzip README.md
- run: test -f README.md.gz