2020-04-28 15:18:53 +00:00
|
|
|
name: Test
|
2023-12-13 04:19:52 +00:00
|
|
|
|
2020-04-28 15:18:53 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2020-07-14 10:20:40 +00:00
|
|
|
- main
|
2020-04-28 15:18:53 +00:00
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
runs-on: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
fail-fast: false
|
|
|
|
|
|
|
|
runs-on: ${{ matrix.runs-on }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-12-13 04:19:52 +00:00
|
|
|
uses: actions/checkout@v4
|
2020-04-28 15:18:53 +00:00
|
|
|
|
2023-12-13 04:19:52 +00:00
|
|
|
- name: Setup Node 20
|
|
|
|
uses: actions/setup-node@v4
|
2020-04-28 15:18:53 +00:00
|
|
|
with:
|
2023-12-13 04:19:52 +00:00
|
|
|
node-version: 20.x
|
2023-01-05 21:27:11 +00:00
|
|
|
cache: 'npm'
|
2020-04-28 15:18:53 +00:00
|
|
|
|
2021-06-24 15:38:43 +00:00
|
|
|
- name: Install dependencies
|
|
|
|
run: npm ci
|
2020-04-28 15:18:53 +00:00
|
|
|
|
|
|
|
- name: Compile
|
|
|
|
run: npm run build
|
|
|
|
|
|
|
|
- name: Lint
|
|
|
|
run: npm run lint
|
|
|
|
|
|
|
|
- name: Format
|
|
|
|
run: npm run format-check
|
|
|
|
|
2023-01-05 21:27:11 +00:00
|
|
|
- name: Test
|
|
|
|
run: npm run test
|
|
|
|
|
2024-10-07 13:45:59 +00:00
|
|
|
# Test end-to-end by uploading a few artifacts and then downloading them
|
2020-04-28 15:18:53 +00:00
|
|
|
- name: Create artifact files
|
|
|
|
run: |
|
|
|
|
mkdir -p path/to/dir-1
|
|
|
|
mkdir -p path/to/dir-2
|
2023-01-06 14:46:02 +00:00
|
|
|
mkdir -p path/to/dir-3
|
2024-10-07 13:45:59 +00:00
|
|
|
mkdir -p symlink/
|
2020-04-28 15:18:53 +00:00
|
|
|
echo "Lorem ipsum dolor sit amet" > path/to/dir-1/file1.txt
|
|
|
|
echo "Hello world from file #2" > path/to/dir-2/file2.txt
|
2024-10-07 13:45:59 +00:00
|
|
|
echo "Hello from a symlinked file" > symlink/original.txt
|
2024-10-08 17:39:45 +00:00
|
|
|
ln -s $(pwd)/symlink/original.txt symlink/abs.txt
|
|
|
|
ln -s original.txt symlink/rel.txt
|
2024-10-07 13:45:59 +00:00
|
|
|
shell: bash
|
2020-04-28 15:18:53 +00:00
|
|
|
|
|
|
|
# Upload a single file artifact
|
|
|
|
- name: 'Upload artifact #1'
|
|
|
|
uses: ./
|
|
|
|
with:
|
2023-12-13 04:19:52 +00:00
|
|
|
name: 'Artifact-A-${{ matrix.runs-on }}'
|
2020-04-28 15:18:53 +00:00
|
|
|
path: path/to/dir-1/file1.txt
|
|
|
|
|
2023-12-13 04:19:52 +00:00
|
|
|
# Upload using a wildcard pattern
|
2020-04-28 15:18:53 +00:00
|
|
|
- name: 'Upload artifact #2'
|
|
|
|
uses: ./
|
|
|
|
with:
|
2023-12-13 04:19:52 +00:00
|
|
|
name: 'Artifact-Wildcard-${{ matrix.runs-on }}'
|
2020-04-28 15:18:53 +00:00
|
|
|
path: path/**/dir*/
|
|
|
|
|
2023-12-13 04:19:52 +00:00
|
|
|
# Upload a multi-path artifact
|
2020-04-28 15:18:53 +00:00
|
|
|
- name: 'Upload artifact #3'
|
|
|
|
uses: ./
|
|
|
|
with:
|
2023-12-13 04:19:52 +00:00
|
|
|
name: 'Multi-Path-Artifact-${{ matrix.runs-on }}'
|
2020-07-09 18:53:45 +00:00
|
|
|
path: |
|
|
|
|
path/to/dir-1/*
|
|
|
|
path/to/dir-[23]/*
|
|
|
|
!path/to/dir-3/*.txt
|
|
|
|
|
2024-10-07 13:45:59 +00:00
|
|
|
- name: 'Upload symlinked artifact'
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
name: 'Symlinked-Artifact-${{ matrix.runs-on }}'
|
2024-10-08 17:39:45 +00:00
|
|
|
path: |
|
|
|
|
symlink/abs.txt
|
|
|
|
symlink/rel.txt
|
2024-10-07 13:45:59 +00:00
|
|
|
|
2020-04-28 15:18:53 +00:00
|
|
|
# Download Artifact #1 and verify the correctness of the content
|
|
|
|
- name: 'Download artifact #1'
|
2023-12-14 20:08:24 +00:00
|
|
|
uses: actions/download-artifact@v4
|
2020-04-28 15:18:53 +00:00
|
|
|
with:
|
2023-12-13 04:19:52 +00:00
|
|
|
name: 'Artifact-A-${{ matrix.runs-on }}'
|
2020-04-28 15:18:53 +00:00
|
|
|
path: some/new/path
|
|
|
|
|
|
|
|
- name: 'Verify Artifact #1'
|
|
|
|
run: |
|
|
|
|
$file = "some/new/path/file1.txt"
|
|
|
|
if(!(Test-Path -path $file))
|
|
|
|
{
|
|
|
|
Write-Error "Expected file does not exist"
|
|
|
|
}
|
|
|
|
if(!((Get-Content $file) -ceq "Lorem ipsum dolor sit amet"))
|
|
|
|
{
|
|
|
|
Write-Error "File contents of downloaded artifact are incorrect"
|
|
|
|
}
|
|
|
|
shell: pwsh
|
|
|
|
|
|
|
|
# Download Artifact #2 and verify the correctness of the content
|
|
|
|
- name: 'Download artifact #2'
|
2023-12-14 20:08:24 +00:00
|
|
|
uses: actions/download-artifact@v4
|
2020-04-28 15:18:53 +00:00
|
|
|
with:
|
2023-12-13 04:19:52 +00:00
|
|
|
name: 'Artifact-Wildcard-${{ matrix.runs-on }}'
|
2020-04-28 15:18:53 +00:00
|
|
|
path: some/other/path
|
|
|
|
|
|
|
|
- name: 'Verify Artifact #2'
|
|
|
|
run: |
|
|
|
|
$file1 = "some/other/path/to/dir-1/file1.txt"
|
|
|
|
$file2 = "some/other/path/to/dir-2/file2.txt"
|
|
|
|
if(!(Test-Path -path $file1) -or !(Test-Path -path $file2))
|
|
|
|
{
|
|
|
|
Write-Error "Expected files do not exist"
|
|
|
|
}
|
|
|
|
if(!((Get-Content $file1) -ceq "Lorem ipsum dolor sit amet") -or !((Get-Content $file2) -ceq "Hello world from file #2"))
|
|
|
|
{
|
|
|
|
Write-Error "File contents of downloaded artifacts are incorrect"
|
|
|
|
}
|
|
|
|
shell: pwsh
|
2023-01-06 14:46:02 +00:00
|
|
|
|
2023-12-13 04:19:52 +00:00
|
|
|
# Download Artifact #4 and verify the correctness of the content
|
2020-07-09 18:53:45 +00:00
|
|
|
- name: 'Download artifact #4'
|
2023-12-14 20:08:24 +00:00
|
|
|
uses: actions/download-artifact@v4
|
2020-07-09 18:53:45 +00:00
|
|
|
with:
|
2023-12-13 04:19:52 +00:00
|
|
|
name: 'Multi-Path-Artifact-${{ matrix.runs-on }}'
|
2020-07-09 18:53:45 +00:00
|
|
|
path: multi/artifact
|
|
|
|
|
|
|
|
- name: 'Verify Artifact #4'
|
|
|
|
run: |
|
|
|
|
$file1 = "multi/artifact/dir-1/file1.txt"
|
|
|
|
$file2 = "multi/artifact/dir-2/file2.txt"
|
|
|
|
if(!(Test-Path -path $file1) -or !(Test-Path -path $file2))
|
|
|
|
{
|
|
|
|
Write-Error "Expected files do not exist"
|
|
|
|
}
|
|
|
|
if(!((Get-Content $file1) -ceq "Lorem ipsum dolor sit amet") -or !((Get-Content $file2) -ceq "Hello world from file #2"))
|
|
|
|
{
|
|
|
|
Write-Error "File contents of downloaded artifacts are incorrect"
|
|
|
|
}
|
|
|
|
shell: pwsh
|
2024-01-18 18:33:14 +00:00
|
|
|
|
2024-10-07 13:45:59 +00:00
|
|
|
- name: 'Download symlinked artifact'
|
|
|
|
uses: actions/download-artifact@v4
|
|
|
|
with:
|
|
|
|
name: 'Symlinked-Artifact-${{ matrix.runs-on }}'
|
|
|
|
path: from/symlink
|
|
|
|
|
|
|
|
- name: 'Verify symlinked artifact'
|
|
|
|
run: |
|
2024-10-08 17:39:45 +00:00
|
|
|
$abs = "from/symlink/abs.txt"
|
|
|
|
if(!(Test-Path -path $abs))
|
|
|
|
{
|
|
|
|
Write-Error "Expected file does not exist"
|
|
|
|
}
|
|
|
|
if(!((Get-Content $abs) -ceq "Hello from a symlinked file"))
|
|
|
|
{
|
|
|
|
Write-Error "File contents of downloaded artifact are incorrect"
|
|
|
|
}
|
|
|
|
$rel = "from/symlink/rel.txt"
|
|
|
|
if(!(Test-Path -path $rel))
|
2024-10-07 13:45:59 +00:00
|
|
|
{
|
|
|
|
Write-Error "Expected file does not exist"
|
|
|
|
}
|
2024-10-08 17:39:45 +00:00
|
|
|
if(!((Get-Content $rel) -ceq "Hello from a symlinked file"))
|
2024-10-07 13:45:59 +00:00
|
|
|
{
|
|
|
|
Write-Error "File contents of downloaded artifact are incorrect"
|
|
|
|
}
|
|
|
|
shell: pwsh
|
|
|
|
|
2024-01-23 03:50:11 +00:00
|
|
|
- name: 'Alter file 1 content'
|
|
|
|
run: |
|
|
|
|
echo "This file has changed" > path/to/dir-1/file1.txt
|
|
|
|
|
2024-01-18 18:33:14 +00:00
|
|
|
# Replace the contents of Artifact #1
|
2024-01-23 03:50:11 +00:00
|
|
|
- name: 'Overwrite artifact #1'
|
2024-01-18 18:33:14 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
name: 'Artifact-A-${{ matrix.runs-on }}'
|
2024-01-23 03:50:11 +00:00
|
|
|
path: path/to/dir-1/file1.txt
|
2024-01-18 18:33:14 +00:00
|
|
|
overwrite: true
|
|
|
|
|
|
|
|
# Download replaced Artifact #1 and verify the correctness of the content
|
|
|
|
- name: 'Download artifact #1 again'
|
|
|
|
uses: actions/download-artifact@v4
|
|
|
|
with:
|
|
|
|
name: 'Artifact-A-${{ matrix.runs-on }}'
|
|
|
|
path: overwrite/some/new/path
|
|
|
|
|
|
|
|
- name: 'Verify Artifact #1 again'
|
|
|
|
run: |
|
2024-01-23 03:50:11 +00:00
|
|
|
$file = "overwrite/some/new/path/file1.txt"
|
2024-01-18 18:33:14 +00:00
|
|
|
if(!(Test-Path -path $file))
|
|
|
|
{
|
|
|
|
Write-Error "Expected file does not exist"
|
|
|
|
}
|
2024-01-23 03:50:11 +00:00
|
|
|
if(!((Get-Content $file) -ceq "This file has changed"))
|
2024-01-18 18:33:14 +00:00
|
|
|
{
|
2024-01-23 03:50:11 +00:00
|
|
|
Write-Error "File contents of downloaded artifact are incorrect"
|
|
|
|
}
|
|
|
|
shell: pwsh
|
|
|
|
merge:
|
|
|
|
name: Merge
|
|
|
|
needs: build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
2024-01-23 16:15:52 +00:00
|
|
|
# Merge all artifacts from previous jobs
|
|
|
|
- name: Merge all artifacts in run
|
2024-01-23 03:50:11 +00:00
|
|
|
uses: ./merge/
|
2024-01-23 16:15:52 +00:00
|
|
|
with:
|
|
|
|
# our matrix produces artifacts with the same file, this prevents "stomping" on each other, also makes it
|
|
|
|
# easier to identify each of the merged artifacts
|
|
|
|
separate-directories: true
|
|
|
|
- name: 'Download merged artifacts'
|
|
|
|
uses: actions/download-artifact@v4
|
2024-01-23 03:50:11 +00:00
|
|
|
with:
|
2024-01-23 16:26:59 +00:00
|
|
|
name: merged-artifacts
|
2024-01-23 16:15:52 +00:00
|
|
|
path: all-merged-artifacts
|
|
|
|
- name: 'Check merged artifact has directories for each artifact'
|
|
|
|
run: |
|
|
|
|
$artifacts = @(
|
|
|
|
"Artifact-A-ubuntu-latest",
|
|
|
|
"Artifact-A-macos-latest",
|
|
|
|
"Artifact-A-windows-latest",
|
|
|
|
"Artifact-Wildcard-ubuntu-latest",
|
|
|
|
"Artifact-Wildcard-macos-latest",
|
|
|
|
"Artifact-Wildcard-windows-latest",
|
|
|
|
"Multi-Path-Artifact-ubuntu-latest",
|
|
|
|
"Multi-Path-Artifact-macos-latest",
|
|
|
|
"Multi-Path-Artifact-windows-latest"
|
|
|
|
)
|
|
|
|
|
|
|
|
foreach ($artifact in $artifacts) {
|
|
|
|
$path = "all-merged-artifacts/$artifact"
|
|
|
|
if (!(Test-Path $path)) {
|
|
|
|
Write-Error "$path does not exist."
|
|
|
|
}
|
|
|
|
}
|
|
|
|
shell: pwsh
|
|
|
|
|
|
|
|
# Merge Artifact-A-* from previous jobs
|
|
|
|
- name: Merge all Artifact-A
|
|
|
|
uses: ./merge/
|
|
|
|
with:
|
|
|
|
name: Merged-Artifact-As
|
2024-01-23 03:50:11 +00:00
|
|
|
pattern: 'Artifact-A-*'
|
|
|
|
separate-directories: true
|
|
|
|
|
|
|
|
# Download merged artifacts and verify the correctness of the content
|
|
|
|
- name: 'Download merged artifacts'
|
|
|
|
uses: actions/download-artifact@v4
|
|
|
|
with:
|
2024-01-23 16:15:52 +00:00
|
|
|
name: Merged-Artifact-As
|
|
|
|
path: merged-artifact-a
|
2024-01-23 03:50:11 +00:00
|
|
|
|
|
|
|
- name: 'Verify merged artifacts'
|
|
|
|
run: |
|
|
|
|
$files = @(
|
2024-01-23 16:15:52 +00:00
|
|
|
"merged-artifact-a/Artifact-A-ubuntu-latest/file1.txt",
|
|
|
|
"merged-artifact-a/Artifact-A-macos-latest/file1.txt",
|
|
|
|
"merged-artifact-a/Artifact-A-windows-latest/file1.txt"
|
2024-01-23 03:50:11 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
foreach ($file in $files) {
|
|
|
|
if (!(Test-Path $file)) {
|
|
|
|
Write-Error "$file does not exist."
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!((Get-Content $file) -ceq "This file has changed")) {
|
|
|
|
Write-Error "$file has incorrect content."
|
|
|
|
}
|
2024-01-18 18:33:14 +00:00
|
|
|
}
|
|
|
|
shell: pwsh
|
2024-01-23 16:15:52 +00:00
|
|
|
|