|
@@ -8,7 +8,7 @@ env:
|
|
|
jobs:
|
|
jobs:
|
|
|
# run tests
|
|
# run tests
|
|
|
test:
|
|
test:
|
|
|
- runs-on: ubuntu-latest
|
|
|
|
|
|
|
+ runs-on: ubuntu-18.04
|
|
|
strategy:
|
|
strategy:
|
|
|
fail-fast: false
|
|
fail-fast: false
|
|
|
matrix:
|
|
matrix:
|
|
@@ -38,7 +38,7 @@ jobs:
|
|
|
|
|
|
|
|
# cross-compile with ARM Thumb (32-bit, little-endian)
|
|
# cross-compile with ARM Thumb (32-bit, little-endian)
|
|
|
- name: install-thumb
|
|
- name: install-thumb
|
|
|
- if: matrix.arch == 'thumb'
|
|
|
|
|
|
|
+ if: ${{matrix.arch == 'thumb'}}
|
|
|
run: |
|
|
run: |
|
|
|
sudo apt-get install -qq \
|
|
sudo apt-get install -qq \
|
|
|
gcc-arm-linux-gnueabi \
|
|
gcc-arm-linux-gnueabi \
|
|
@@ -50,7 +50,7 @@ jobs:
|
|
|
qemu-arm -version
|
|
qemu-arm -version
|
|
|
# cross-compile with MIPS (32-bit, big-endian)
|
|
# cross-compile with MIPS (32-bit, big-endian)
|
|
|
- name: install-mips
|
|
- name: install-mips
|
|
|
- if: matrix.arch == 'mips'
|
|
|
|
|
|
|
+ if: ${{matrix.arch == 'mips'}}
|
|
|
run: |
|
|
run: |
|
|
|
sudo apt-get install -qq \
|
|
sudo apt-get install -qq \
|
|
|
gcc-mips-linux-gnu \
|
|
gcc-mips-linux-gnu \
|
|
@@ -62,7 +62,7 @@ jobs:
|
|
|
qemu-mips -version
|
|
qemu-mips -version
|
|
|
# cross-compile with PowerPC (32-bit, big-endian)
|
|
# cross-compile with PowerPC (32-bit, big-endian)
|
|
|
- name: install-powerpc
|
|
- name: install-powerpc
|
|
|
- if: matrix.arch == 'powerpc'
|
|
|
|
|
|
|
+ if: ${{matrix.arch == 'powerpc'}}
|
|
|
run: |
|
|
run: |
|
|
|
sudo apt-get install -qq \
|
|
sudo apt-get install -qq \
|
|
|
gcc-powerpc-linux-gnu \
|
|
gcc-powerpc-linux-gnu \
|
|
@@ -76,71 +76,71 @@ jobs:
|
|
|
# make sure example can at least compile
|
|
# make sure example can at least compile
|
|
|
- name: test-example
|
|
- name: test-example
|
|
|
run: |
|
|
run: |
|
|
|
- sed -n '/``` c/,/```/{/```/d; p}' README.md > test.c && \
|
|
|
|
|
|
|
+ sed -n '/``` c/,/```/{/```/d; p}' README.md > test.c
|
|
|
make all CFLAGS+=" \
|
|
make all CFLAGS+=" \
|
|
|
-Duser_provided_block_device_read=NULL \
|
|
-Duser_provided_block_device_read=NULL \
|
|
|
-Duser_provided_block_device_prog=NULL \
|
|
-Duser_provided_block_device_prog=NULL \
|
|
|
-Duser_provided_block_device_erase=NULL \
|
|
-Duser_provided_block_device_erase=NULL \
|
|
|
-Duser_provided_block_device_sync=NULL \
|
|
-Duser_provided_block_device_sync=NULL \
|
|
|
-include stdio.h"
|
|
-include stdio.h"
|
|
|
|
|
+ rm test.c
|
|
|
|
|
|
|
|
-# # test configurations
|
|
|
|
|
-# # normal+reentrant tests
|
|
|
|
|
-# - name: test-default
|
|
|
|
|
-# run: |
|
|
|
|
|
-# make clean
|
|
|
|
|
-# make test TESTFLAGS+="-nrk"
|
|
|
|
|
-# # NOR flash: read/prog = 1 block = 4KiB
|
|
|
|
|
-# - name: test-nor
|
|
|
|
|
-# run: |
|
|
|
|
|
-# make clean
|
|
|
|
|
-# make test TESTFLAGS+="-nrk \
|
|
|
|
|
-# -DLFS_READ_SIZE=1 -DLFS_BLOCK_SIZE=4096"
|
|
|
|
|
-# # SD/eMMC: read/prog = 512 block = 512
|
|
|
|
|
-# - name: test-emmc
|
|
|
|
|
-# run: |
|
|
|
|
|
-# make clean
|
|
|
|
|
-# make test TESTFLAGS+="-nrk \
|
|
|
|
|
-# -DLFS_READ_SIZE=512 -DLFS_BLOCK_SIZE=512"
|
|
|
|
|
-# # NAND flash: read/prog = 4KiB block = 32KiB
|
|
|
|
|
-# - name: test-nand
|
|
|
|
|
-# run: |
|
|
|
|
|
-# make clean
|
|
|
|
|
-# make test TESTFLAGS+="-nrk \
|
|
|
|
|
-# -DLFS_READ_SIZE=4096 -DLFS_BLOCK_SIZE=\(32*1024\)"
|
|
|
|
|
-# # other extreme geometries that are useful for various corner cases
|
|
|
|
|
-# - name: test-no-intrinsics
|
|
|
|
|
-# run: |
|
|
|
|
|
-# make clean
|
|
|
|
|
-# make test TESTFLAGS+="-nrk \
|
|
|
|
|
-# -DLFS_NO_INTRINSICS"
|
|
|
|
|
-# - name: test-byte-writes
|
|
|
|
|
-# # it just takes too long to test byte-level writes when in qemu,
|
|
|
|
|
-# # should be plenty covered by the other configurations
|
|
|
|
|
-# if: matrix.arch == 'x86_64'
|
|
|
|
|
-# run: |
|
|
|
|
|
-# make clean
|
|
|
|
|
-# make test TESTFLAGS+="-nrk \
|
|
|
|
|
-# -DLFS_READ_SIZE=1 -DLFS_CACHE_SIZE=1"
|
|
|
|
|
-# - name: test-block-cycles
|
|
|
|
|
-# run: |
|
|
|
|
|
-# make clean
|
|
|
|
|
-# make test TESTFLAGS+="-nrk \
|
|
|
|
|
-# -DLFS_BLOCK_CYCLES=1"
|
|
|
|
|
-# - name: test-odd-block-count
|
|
|
|
|
-# run: |
|
|
|
|
|
-# make clean
|
|
|
|
|
-# make test TESTFLAGS+="-nrk \
|
|
|
|
|
-# -DLFS_BLOCK_COUNT=1023 -DLFS_LOOKAHEAD_SIZE=256"
|
|
|
|
|
-# - name: test-odd-block-size
|
|
|
|
|
-# run: |
|
|
|
|
|
-# make clean
|
|
|
|
|
-# make test TESTFLAGS+="-nrk \
|
|
|
|
|
-# -DLFS_READ_SIZE=11 -DLFS_BLOCK_SIZE=704"
|
|
|
|
|
|
|
+ # test configurations
|
|
|
|
|
+ # normal+reentrant tests
|
|
|
|
|
+ - name: test-default
|
|
|
|
|
+ run: |
|
|
|
|
|
+ make clean
|
|
|
|
|
+ make test TESTFLAGS+="-nrk"
|
|
|
|
|
+ # NOR flash: read/prog = 1 block = 4KiB
|
|
|
|
|
+ - name: test-nor
|
|
|
|
|
+ run: |
|
|
|
|
|
+ make clean
|
|
|
|
|
+ make test TESTFLAGS+="-nrk \
|
|
|
|
|
+ -DLFS_READ_SIZE=1 -DLFS_BLOCK_SIZE=4096"
|
|
|
|
|
+ # SD/eMMC: read/prog = 512 block = 512
|
|
|
|
|
+ - name: test-emmc
|
|
|
|
|
+ run: |
|
|
|
|
|
+ make clean
|
|
|
|
|
+ make test TESTFLAGS+="-nrk \
|
|
|
|
|
+ -DLFS_READ_SIZE=512 -DLFS_BLOCK_SIZE=512"
|
|
|
|
|
+ # NAND flash: read/prog = 4KiB block = 32KiB
|
|
|
|
|
+ - name: test-nand
|
|
|
|
|
+ run: |
|
|
|
|
|
+ make clean
|
|
|
|
|
+ make test TESTFLAGS+="-nrk \
|
|
|
|
|
+ -DLFS_READ_SIZE=4096 -DLFS_BLOCK_SIZE=\(32*1024\)"
|
|
|
|
|
+ # other extreme geometries that are useful for various corner cases
|
|
|
|
|
+ - name: test-no-intrinsics
|
|
|
|
|
+ run: |
|
|
|
|
|
+ make clean
|
|
|
|
|
+ make test TESTFLAGS+="-nrk \
|
|
|
|
|
+ -DLFS_NO_INTRINSICS"
|
|
|
|
|
+ - name: test-byte-writes
|
|
|
|
|
+ # it just takes too long to test byte-level writes when in qemu,
|
|
|
|
|
+ # should be plenty covered by the other configurations
|
|
|
|
|
+ if: ${{matrix.arch == 'x86_64'}}
|
|
|
|
|
+ run: |
|
|
|
|
|
+ make clean
|
|
|
|
|
+ make test TESTFLAGS+="-nrk \
|
|
|
|
|
+ -DLFS_READ_SIZE=1 -DLFS_CACHE_SIZE=1"
|
|
|
|
|
+ - name: test-block-cycles
|
|
|
|
|
+ run: |
|
|
|
|
|
+ make clean
|
|
|
|
|
+ make test TESTFLAGS+="-nrk \
|
|
|
|
|
+ -DLFS_BLOCK_CYCLES=1"
|
|
|
|
|
+ - name: test-odd-block-count
|
|
|
|
|
+ run: |
|
|
|
|
|
+ make clean
|
|
|
|
|
+ make test TESTFLAGS+="-nrk \
|
|
|
|
|
+ -DLFS_BLOCK_COUNT=1023 -DLFS_LOOKAHEAD_SIZE=256"
|
|
|
|
|
+ - name: test-odd-block-size
|
|
|
|
|
+ run: |
|
|
|
|
|
+ make clean
|
|
|
|
|
+ make test TESTFLAGS+="-nrk \
|
|
|
|
|
+ -DLFS_READ_SIZE=11 -DLFS_BLOCK_SIZE=704"
|
|
|
|
|
|
|
|
- # upload coveragefor later coverage
|
|
|
|
|
|
|
+ # upload coverage for later coverage
|
|
|
- name: upload-coverage
|
|
- name: upload-coverage
|
|
|
- continue-on-error: true
|
|
|
|
|
uses: actions/upload-artifact@v2
|
|
uses: actions/upload-artifact@v2
|
|
|
with:
|
|
with:
|
|
|
name: coverage
|
|
name: coverage
|
|
@@ -149,7 +149,6 @@ jobs:
|
|
|
|
|
|
|
|
# update results
|
|
# update results
|
|
|
- name: results-code
|
|
- name: results-code
|
|
|
- continue-on-error: true
|
|
|
|
|
run: |
|
|
run: |
|
|
|
mkdir -p results
|
|
mkdir -p results
|
|
|
make clean
|
|
make clean
|
|
@@ -161,7 +160,6 @@ jobs:
|
|
|
-DLFS_NO_ERROR" \
|
|
-DLFS_NO_ERROR" \
|
|
|
CODEFLAGS+="-o results/code-${{matrix.arch}}.csv"
|
|
CODEFLAGS+="-o results/code-${{matrix.arch}}.csv"
|
|
|
- name: results-code-readonly
|
|
- name: results-code-readonly
|
|
|
- continue-on-error: true
|
|
|
|
|
run: |
|
|
run: |
|
|
|
mkdir -p results
|
|
mkdir -p results
|
|
|
make clean
|
|
make clean
|
|
@@ -174,7 +172,6 @@ jobs:
|
|
|
-DLFS_READONLY" \
|
|
-DLFS_READONLY" \
|
|
|
CODEFLAGS+="-o results/code-${{matrix.arch}}-readonly.csv"
|
|
CODEFLAGS+="-o results/code-${{matrix.arch}}-readonly.csv"
|
|
|
- name: results-code-threadsafe
|
|
- name: results-code-threadsafe
|
|
|
- continue-on-error: true
|
|
|
|
|
run: |
|
|
run: |
|
|
|
mkdir -p results
|
|
mkdir -p results
|
|
|
make clean
|
|
make clean
|
|
@@ -187,7 +184,6 @@ jobs:
|
|
|
-DLFS_THREADSAFE" \
|
|
-DLFS_THREADSAFE" \
|
|
|
CODEFLAGS+="-o results/code-${{matrix.arch}}-threadsafe.csv"
|
|
CODEFLAGS+="-o results/code-${{matrix.arch}}-threadsafe.csv"
|
|
|
- name: results-code-migrate
|
|
- name: results-code-migrate
|
|
|
- continue-on-error: true
|
|
|
|
|
run: |
|
|
run: |
|
|
|
mkdir -p results
|
|
mkdir -p results
|
|
|
make clean
|
|
make clean
|
|
@@ -200,7 +196,6 @@ jobs:
|
|
|
-DLFS_MIGRATE" \
|
|
-DLFS_MIGRATE" \
|
|
|
CODEFLAGS+="-o results/code-${{matrix.arch}}-migrate.csv"
|
|
CODEFLAGS+="-o results/code-${{matrix.arch}}-migrate.csv"
|
|
|
- name: upload-results
|
|
- name: upload-results
|
|
|
- continue-on-error: true
|
|
|
|
|
uses: actions/upload-artifact@v2
|
|
uses: actions/upload-artifact@v2
|
|
|
with:
|
|
with:
|
|
|
name: results
|
|
name: results
|
|
@@ -208,28 +203,25 @@ jobs:
|
|
|
# limit reporting to Thumb, otherwise there would be too many numbers
|
|
# limit reporting to Thumb, otherwise there would be too many numbers
|
|
|
# flying around for the results to be easily readable
|
|
# flying around for the results to be easily readable
|
|
|
- name: collect-status
|
|
- name: collect-status
|
|
|
- continue-on-error: true
|
|
|
|
|
- if: matrix.arch == 'thumb'
|
|
|
|
|
|
|
+ if: ${{matrix.arch == 'thumb'}}
|
|
|
run: |
|
|
run: |
|
|
|
mkdir -p status
|
|
mkdir -p status
|
|
|
- for f in results/code*.csv
|
|
|
|
|
|
|
+ for f in $(shopt -s nullglob ; echo results/code*.csv)
|
|
|
do
|
|
do
|
|
|
- [ -e "$f" ] || continue
|
|
|
|
|
export STEP="results-code$(
|
|
export STEP="results-code$(
|
|
|
echo $f | sed -n 's/.*code-.*-\(.*\).csv/-\1/p')"
|
|
echo $f | sed -n 's/.*code-.*-\(.*\).csv/-\1/p')"
|
|
|
export CONTEXT="results / code$(
|
|
export CONTEXT="results / code$(
|
|
|
echo $f | sed -n 's/.*code-.*-\(.*\).csv/ (\1)/p')"
|
|
echo $f | sed -n 's/.*code-.*-\(.*\).csv/ (\1)/p')"
|
|
|
export PREV="$(curl -sS \
|
|
export PREV="$(curl -sS \
|
|
|
"$GITHUB_API_URL/repos/$GITHUB_REPOSITORY/status/master" \
|
|
"$GITHUB_API_URL/repos/$GITHUB_REPOSITORY/status/master" \
|
|
|
- | jq -re "select(.sha != env.GITHUB_SHA) | .statuses[]
|
|
|
|
|
|
|
+ | jq -re 'select(.sha != env.GITHUB_SHA) | .statuses[]
|
|
|
| select(.context == env.CONTEXT).description
|
|
| select(.context == env.CONTEXT).description
|
|
|
- | capture(\"Code size is (?<result>[0-9]+)\").result" \
|
|
|
|
|
|
|
+ | capture("Code size is (?<result>[0-9]+)").result' \
|
|
|
|| echo 0)"
|
|
|| echo 0)"
|
|
|
- echo $PREV
|
|
|
|
|
export DESCRIPTION="$(./scripts/code.py -u $f -s | awk '
|
|
export DESCRIPTION="$(./scripts/code.py -u $f -s | awk '
|
|
|
NR==2 {printf "Code size is %d B",$2}
|
|
NR==2 {printf "Code size is %d B",$2}
|
|
|
- NR==2 && ENVIRON["PREV"] != 0 {
|
|
|
|
|
- printf " (%+.1f%%)",100*($2-ENVIRON["PREV"])/$2}')"
|
|
|
|
|
|
|
+ NR==2 && ENVIRON["PREV"]+0 != 0 {
|
|
|
|
|
+ printf " (%+.1f%%)",100*($2-ENVIRON["PREV"])/ENVIRON["PREV"]}')"
|
|
|
jq -n '{
|
|
jq -n '{
|
|
|
state: "success",
|
|
state: "success",
|
|
|
context: env.CONTEXT,
|
|
context: env.CONTEXT,
|
|
@@ -240,8 +232,7 @@ jobs:
|
|
|
echo $f | sed -n 's/.*code-.*-\(.*\).csv/-\1/p').json
|
|
echo $f | sed -n 's/.*code-.*-\(.*\).csv/-\1/p').json
|
|
|
done
|
|
done
|
|
|
- name: upload-status
|
|
- name: upload-status
|
|
|
- continue-on-error: true
|
|
|
|
|
- if: matrix.arch == 'thumb'
|
|
|
|
|
|
|
+ if: ${{matrix.arch == 'thumb'}}
|
|
|
uses: actions/upload-artifact@v2
|
|
uses: actions/upload-artifact@v2
|
|
|
with:
|
|
with:
|
|
|
name: status
|
|
name: status
|
|
@@ -250,7 +241,7 @@ jobs:
|
|
|
|
|
|
|
|
# run under Valgrind to check for memory errors
|
|
# run under Valgrind to check for memory errors
|
|
|
valgrind:
|
|
valgrind:
|
|
|
- runs-on: ubuntu-latest
|
|
|
|
|
|
|
+ runs-on: ubuntu-18.04
|
|
|
steps:
|
|
steps:
|
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/checkout@v2
|
|
|
- name: install
|
|
- name: install
|
|
@@ -264,14 +255,14 @@ jobs:
|
|
|
sudo apt-get update -qq
|
|
sudo apt-get update -qq
|
|
|
sudo apt-get install -qq valgrind
|
|
sudo apt-get install -qq valgrind
|
|
|
valgrind --version
|
|
valgrind --version
|
|
|
-# # normal tests, we don't need to test all geometries
|
|
|
|
|
-# - name: test-valgrind
|
|
|
|
|
-# run: make test TESTFLAGS+="-k --valgrind"
|
|
|
|
|
|
|
+ # normal tests, we don't need to test all geometries
|
|
|
|
|
+ - name: test-valgrind
|
|
|
|
|
+ run: make test TESTFLAGS+="-k --valgrind"
|
|
|
|
|
|
|
|
# self-host with littlefs-fuse for a fuzz-like test
|
|
# self-host with littlefs-fuse for a fuzz-like test
|
|
|
fuse:
|
|
fuse:
|
|
|
- runs-on: ubuntu-latest
|
|
|
|
|
- if: "!endsWith(github.ref, '-prefix')"
|
|
|
|
|
|
|
+ runs-on: ubuntu-18.04
|
|
|
|
|
+ if: ${{!endsWith(github.ref, '-prefix')}}
|
|
|
steps:
|
|
steps:
|
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/checkout@v2
|
|
|
- name: install
|
|
- name: install
|
|
@@ -316,8 +307,8 @@ jobs:
|
|
|
|
|
|
|
|
# test migration using littlefs-fuse
|
|
# test migration using littlefs-fuse
|
|
|
migrate:
|
|
migrate:
|
|
|
- runs-on: ubuntu-latest
|
|
|
|
|
- if: "!endsWith(github.ref, '-prefix')"
|
|
|
|
|
|
|
+ runs-on: ubuntu-18.04
|
|
|
|
|
+ if: ${{!endsWith(github.ref, '-prefix')}}
|
|
|
steps:
|
|
steps:
|
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/checkout@v2
|
|
|
- name: install
|
|
- name: install
|
|
@@ -383,9 +374,8 @@ jobs:
|
|
|
|
|
|
|
|
# collect coverage info
|
|
# collect coverage info
|
|
|
coverage:
|
|
coverage:
|
|
|
- runs-on: ubuntu-latest
|
|
|
|
|
|
|
+ runs-on: ubuntu-18.04
|
|
|
needs: [test]
|
|
needs: [test]
|
|
|
- continue-on-error: true
|
|
|
|
|
steps:
|
|
steps:
|
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/checkout@v2
|
|
|
- name: install
|
|
- name: install
|
|
@@ -393,7 +383,7 @@ jobs:
|
|
|
sudo apt-get update -qq
|
|
sudo apt-get update -qq
|
|
|
sudo apt-get install -qq python3 python3-pip lcov
|
|
sudo apt-get install -qq python3 python3-pip lcov
|
|
|
sudo pip3 install toml
|
|
sudo pip3 install toml
|
|
|
- # yes we continue-on-error on every step, continue-on-error
|
|
|
|
|
|
|
+ # yes we continue-on-error nearly every step, continue-on-error
|
|
|
# at job level apparently still marks a job as failed, which isn't
|
|
# at job level apparently still marks a job as failed, which isn't
|
|
|
# what we want
|
|
# what we want
|
|
|
- uses: actions/download-artifact@v2
|
|
- uses: actions/download-artifact@v2
|
|
@@ -410,12 +400,10 @@ jobs:
|
|
|
./scripts/coverage.py results/coverage.info -o results/coverage.csv
|
|
./scripts/coverage.py results/coverage.info -o results/coverage.csv
|
|
|
- name: upload-results
|
|
- name: upload-results
|
|
|
uses: actions/upload-artifact@v2
|
|
uses: actions/upload-artifact@v2
|
|
|
- continue-on-error: true
|
|
|
|
|
with:
|
|
with:
|
|
|
name: results
|
|
name: results
|
|
|
path: results
|
|
path: results
|
|
|
- name: collect-status
|
|
- name: collect-status
|
|
|
- continue-on-error: true
|
|
|
|
|
run: |
|
|
run: |
|
|
|
mkdir -p status
|
|
mkdir -p status
|
|
|
[ -e results/coverage.csv ] || exit 0
|
|
[ -e results/coverage.csv ] || exit 0
|
|
@@ -423,15 +411,14 @@ jobs:
|
|
|
export CONTEXT="results / coverage"
|
|
export CONTEXT="results / coverage"
|
|
|
export PREV="$(curl -sS \
|
|
export PREV="$(curl -sS \
|
|
|
"$GITHUB_API_URL/repos/$GITHUB_REPOSITORY/status/master" \
|
|
"$GITHUB_API_URL/repos/$GITHUB_REPOSITORY/status/master" \
|
|
|
- | jq -re "select(.sha != env.GITHUB_SHA) | .statuses[]
|
|
|
|
|
|
|
+ | jq -re 'select(.sha != env.GITHUB_SHA) | .statuses[]
|
|
|
| select(.context == env.CONTEXT).description
|
|
| select(.context == env.CONTEXT).description
|
|
|
- | capture(\"Coverage is (?<result>[0-9\\\\.]+)\").result" \
|
|
|
|
|
|
|
+ | capture("Coverage is (?<result>[0-9\\.]+)").result' \
|
|
|
|| echo 0)"
|
|
|| echo 0)"
|
|
|
export DESCRIPTION="$(
|
|
export DESCRIPTION="$(
|
|
|
- ./scripts/coverage.py -u results/coverage.csv -s \
|
|
|
|
|
- | awk -F '[ /%]+' '
|
|
|
|
|
|
|
+ ./scripts/coverage.py -u results/coverage.csv -s | awk -F '[ /%]+' '
|
|
|
NR==2 {printf "Coverage is %.1f%% of %d lines",$4,$3}
|
|
NR==2 {printf "Coverage is %.1f%% of %d lines",$4,$3}
|
|
|
- NR==2 && ENVIRON["PREV"] != 0 {
|
|
|
|
|
|
|
+ NR==2 && ENVIRON["PREV"]+0 != 0 {
|
|
|
printf " (%+.1f%%)",$4-ENVIRON["PREV"]}')"
|
|
printf " (%+.1f%%)",$4-ENVIRON["PREV"]}')"
|
|
|
jq -n '{
|
|
jq -n '{
|
|
|
state: "success",
|
|
state: "success",
|
|
@@ -442,7 +429,6 @@ jobs:
|
|
|
| tee status/coverage.json
|
|
| tee status/coverage.json
|
|
|
- name: upload-status
|
|
- name: upload-status
|
|
|
uses: actions/upload-artifact@v2
|
|
uses: actions/upload-artifact@v2
|
|
|
- continue-on-error: true
|
|
|
|
|
with:
|
|
with:
|
|
|
name: status
|
|
name: status
|
|
|
path: status
|
|
path: status
|