act
act copied to clipboard
cmake: command not found
Bug report info
act version: 0.2.30
GOOS: linux
GOARCH: amd64
NumCPU: 2
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/home/ubuntu/.actrc:
-P ubuntu-latest=catthehacker/ubuntu:act-latest
-P ubuntu-22.04=catthehacker/ubuntu:act-22.04
-P ubuntu-20.04=catthehacker/ubuntu:act-20.04
-P ubuntu-18.04=catthehacker/ubuntu:act-18.04
Build info:
Go version: go1.18.4
Module path: github.com/nektos/act
Main version: (devel)
Main path: github.com/nektos/act
Main checksum:
Build settings:
-compiler: gc
-ldflags: -s -w -X main.version=0.2.30 -X main.commit=3364f95569d8a39d440b18af69d29421fcc77b55 -X main.date=2022-08-01T02:56:59Z -X main.builtBy=goreleaser
CGO_ENABLED: 0
GOARCH: amd64
GOOS: linux
GOAMD64: v1
vcs: git
vcs.revision: 3364f95569d8a39d440b18af69d29421fcc77b55
vcs.time: 2022-07-29T19:43:24Z
vcs.modified: false
Docker Engine:
Engine version: 20.10.17
Engine runtime: runc
Cgroup version: 2
Cgroup driver: systemd
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Ubuntu 22.04.1 LTS
OS type: linux
OS version: 22.04
OS arch: x86_64
OS kernel: 5.15.0-43-generic
OS CPU: 2
OS memory: 3925 MB
Security options:
name=apparmor
name=seccomp,profile=default
name=cgroupns
Command used with act
act
Describe issue
cmake: command not found
Link to GitHub repository
https://github.com/EBI-Metagenomics/short-circuit
Workflow content
name: Test
on: push
jobs:
test:
name: Test on ${{ matrix.os }} with build type ${{ matrix.build_type }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-12]
build_type: [Release, Debug]
steps:
- uses: actions/checkout@v3
- name: Configure CMake
if: runner.os == 'Linux'
run: |
cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
-DUSE_SANITIZER='Address;Undefined' -DENABLE_ALL_WARNINGS=ON
- name: Configure CMake
if: runner.os == 'macOS'
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DENABLE_ALL_WARNINGS=ON
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{matrix.build_type}}
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest -C ${{matrix.build_type}} --rerun-failed --output-on-failure
Relevant log output
..."Loading environment from /home/ubuntu/code/short-circuit/.env"
..."Loading secrets from /home/ubuntu/code/short-circuit/.secrets"
..."Loading workflows from '/home/ubuntu/code/short-circuit/.github/workflows'"
..."Loading workflows recursively"
..."Found workflow 'test.yml' in '/home/ubuntu/code/short-circuit/.github/workflows/test.yml'"
..."Reading workflow '/home/ubuntu/code/short-circuit/.github/workflows/test.yml'"
..."Planning event: push"
..."Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'"
..."Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'"
..."Found revision: ...\n"
..."HEAD points to '...'"
..."using github ref: refs/heads/main"
..."Found revision: ...\n"
..."expression 'Test on ${{ matrix.os }} with build type ${{ matrix.build_type }}' rewritten to 'format('Test on {0} with build type {1}', matrix.os, matrix.build_type)'"
..."evaluating expression 'format('Test on {0} with build type {1}', matrix.os, matrix.build_type)'"
..."expression 'format('Test on {0} with build type {1}', matrix.os, matrix.build_type)' evaluated to '%!t(string=Test on with build type )'"
..."Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'"
..."Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'"
..."Found revision: ...\n"
..."HEAD points to '...'"
..."using github ref: refs/heads/main"
..."Found revision: ...\n"
level=debug
..."Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'"
..."Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'"
..."Found revision: ...\n"
..."HEAD points to '...'"
..."using github ref: refs/heads/main"
..."Found revision: ...\n"
..."expression 'Test on ${{ matrix.os }} with build type ${{ matrix.build_type }}' rewritten to 'format('Test on {0} with build type {1}', matrix.os, matrix.build_type)'"
..."evaluating expression 'format('Test on {0} with build type {1}', matrix.os, matrix.build_type)'"
..."expression 'format('Test on {0} with build type {1}', matrix.os, matrix.build_type)' evaluated to '%!t(string=Test on ubuntu-latest with build type Release)'"
..."Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'"
..."Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'"
..."Found revision: ...\n"
..."HEAD points to '...'"
..."using github ref: refs/heads/main"
..."Found revision: ...\n"
..."expression 'Test on ${{ matrix.os }} with build type ${{ matrix.build_type }}' rewritten to 'format('Test on {0} with build type {1}', matrix.os, matrix.build_type)'"
..."evaluating expression 'format('Test on {0} with build type {1}', matrix.os, matrix.build_type)'"
..."expression 'format('Test on {0} with build type {1}', matrix.os, matrix.build_type)' evaluated to '%!t(string=Test on ubuntu-latest with build type Debug)'"
..."Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'"
..."Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'"
..."Found revision: ...\n"
..."HEAD points to '...'"
..."using github ref: refs/heads/main"
..."Found revision: ...\n"
..."expression 'Test on ${{ matrix.os }} with build type ${{ matrix.build_type }}' rewritten to 'format('Test on {0} with build type {1}', matrix.os, matrix.build_type)'"
..."evaluating expression 'format('Test on {0} with build type {1}', matrix.os, matrix.build_type)'"
..."expression 'format('Test on {0} with build type {1}', matrix.os, matrix.build_type)' evaluated to '%!t(string=Test on macos-12 with build type Release)'"
..."Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'"
..."Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'"
..."Found revision: ...\n"
..."HEAD points to '...'"
..."using github ref: refs/heads/main"
..."Found revision: ...\n"
..."expression 'Test on ${{ matrix.os }} with build type ${{ matrix.build_type }}' rewritten to 'format('Test on {0} with build type {1}', matrix.os, matrix.build_type)'"
..."evaluating expression 'format('Test on {0} with build type {1}', matrix.os, matrix.build_type)'"
..."expression 'format('Test on {0} with build type {1}', matrix.os, matrix.build_type)' evaluated to '%!t(string=Test on macos-12 with build type Debug)'"
...ubuntu-latest...Release-1... [DEBUG] evaluating expression 'success()'
...ubuntu-latest...Debug-2... [DEBUG] evaluating expression 'success()'
...macos-12...
...macos-12...
...macos-12...
...macos-12...
...macos-12...
...ubuntu-latest...Release-1... [DEBUG] expression 'success()' evaluated to 'true'
...macos-12...
...ubuntu-latest...Release-1... [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
...ubuntu-latest...Release-1... [DEBUG] evaluating expression 'format('{0}', matrix.os)'
...ubuntu-latest...Release-1... [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)'
...ubuntu-latest...Release-1... [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
...ubuntu-latest...Release-1... [DEBUG] evaluating expression 'format('{0}', matrix.os)'
...ubuntu-latest...Release-1... [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)'
...ubuntu-latest...Release-1... ๐ Start image=catthehacker/ubuntu:act-latest
...macos-12...
...macos-12...
...macos-12...
...macos-12...
...macos-12...
...macos-12...
...macos-12...
...macos-12...
...ubuntu-latest...Debug-2... [DEBUG] expression 'success()' evaluated to 'true'
...ubuntu-latest...Debug-2... [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
...ubuntu-latest...Debug-2... [DEBUG] evaluating expression 'format('{0}', matrix.os)'
...ubuntu-latest...Release-1... ๐ณ docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=false
...ubuntu-latest...Release-1... [DEBUG] ๐ณ docker pull catthehacker/ubuntu:act-latest
...ubuntu-latest...Debug-2... [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)'
...ubuntu-latest...Debug-2... [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
...ubuntu-latest...Debug-2... [DEBUG] evaluating expression 'format('{0}', matrix.os)'
...ubuntu-latest...Debug-2... [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)'
...ubuntu-latest...Debug-2... ๐ Start image=catthehacker/ubuntu:act-latest
...ubuntu-latest...Debug-2... ๐ณ docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=false
...ubuntu-latest...Debug-2... [DEBUG] ๐ณ docker pull catthehacker/ubuntu:act-latest
...macos-12...
...macos-12...
...macos-12...
...macos-12...
...ubuntu-latest...Debug-2... [DEBUG] Image exists? true
...ubuntu-latest...Release-1... [DEBUG] Image exists? true
...ubuntu-latest...Release-1... [DEBUG] Removed container: b75f3b308f159179ca1086942d725570475cdafc50070eeb66d0e6d66020bac2
...ubuntu-latest...Release-1... [DEBUG] ๐ณ docker volume rm act-Test-Test-on-ubuntu-latest-with-build-type-Release-1
...ubuntu-latest...Debug-2... [DEBUG] Removed container: ae4e80f1e585c64b4d6a01f942db1e5fb1a3ad6d17a24722413ce9976159ad5b
...ubuntu-latest...Debug-2... [DEBUG] ๐ณ docker volume rm act-Test-Test-on-ubuntu-latest-with-build-type-Debug-2
...ubuntu-latest...Release-1... [DEBUG] ๐ณ docker volume rm act-Test-Test-on-ubuntu-latest-with-build-type-Release-1-env
...ubuntu-latest...Release-1... ๐ณ docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
...ubuntu-latest...Debug-2... [DEBUG] ๐ณ docker volume rm act-Test-Test-on-ubuntu-latest-with-build-type-Debug-2-env
...ubuntu-latest...Debug-2... ๐ณ docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
...ubuntu-latest...Release-1... [DEBUG] Created container name=act-Test-Test-on-ubuntu-latest-with-build-type-Release-1 id=92ebdf7e5502f9033f0e888b6d684ef609fe39ce77f2534097eb682451633ebb from image catthehacker/ubuntu:act-latest (platform: )
...ubuntu-latest...Release-1... [DEBUG] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp]
...ubuntu-latest...Release-1... ๐ณ docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
...ubuntu-latest...Release-1... [DEBUG] Starting container: 92ebdf7e5502f9033f0e888b6d684ef609fe39ce77f2534097eb682451633ebb
...ubuntu-latest...Debug-2... [DEBUG] Created container name=act-Test-Test-on-ubuntu-latest-with-build-type-Debug-2 id=cb34777bc8d58ab94c7c73a0d919b986017bff4c2319fbb63b62322063e1c306 from image catthehacker/ubuntu:act-latest (platform: )
...ubuntu-latest...Debug-2... [DEBUG] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp]
...ubuntu-latest...Debug-2... ๐ณ docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
...ubuntu-latest...Debug-2... [DEBUG] Starting container: cb34777bc8d58ab94c7c73a0d919b986017bff4c2319fbb63b62322063e1c306
...ubuntu-latest...Debug-2... [DEBUG] Started container: cb34777bc8d58ab94c7c73a0d919b986017bff4c2319fbb63b62322063e1c306
...ubuntu-latest...Release-1... [DEBUG] Started container: 92ebdf7e5502f9033f0e888b6d684ef609fe39ce77f2534097eb682451633ebb
...ubuntu-latest...Release-1... [DEBUG] Writing entry to tarball workflow/event.json len:2
...ubuntu-latest...Release-1... [DEBUG] Writing entry to tarball workflow/envs.txt len:0
...ubuntu-latest...Release-1... [DEBUG] Writing entry to tarball workflow/paths.txt len:0
...ubuntu-latest...Release-1... [DEBUG] Extracting content to '/var/run/act/'
...ubuntu-latest...Debug-2... [DEBUG] Writing entry to tarball workflow/event.json len:2
...ubuntu-latest...Debug-2... [DEBUG] Writing entry to tarball workflow/envs.txt len:0
...ubuntu-latest...Debug-2... [DEBUG] Writing entry to tarball workflow/paths.txt len:0
...ubuntu-latest...Debug-2... [DEBUG] Extracting content to '/var/run/act/'
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] Skipping local actions/checkout because workdir was already copied
...ubuntu-latest...Release-1... [DEBUG] skip pre step for 'actions/checkout@v3': no action model available
...ubuntu-latest...Release-1... ๐งช Matrix: map[build_type:Release os:ubuntu-latest]
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] Skipping local actions/checkout because workdir was already copied
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
...ubuntu-latest...Release-1... [DEBUG] evaluating expression 'format('{0}', matrix.os)'
...ubuntu-latest...Release-1... [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)'
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] Skipping local actions/checkout because workdir was already copied
...ubuntu-latest...Debug-2... [DEBUG] skip pre step for 'actions/checkout@v3': no action model available
...ubuntu-latest...Debug-2... ๐งช Matrix: map[build_type:Debug os:ubuntu-latest]
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] Skipping local actions/checkout because workdir was already copied
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
...ubuntu-latest...Debug-2... [DEBUG] evaluating expression 'format('{0}', matrix.os)'
...ubuntu-latest...Debug-2... [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)'
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:Test on ubuntu-latest with build type Release GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:EBI-Metagenomics/short-circuit GITHUB_REPOSITORY_OWNER:EBI-Metagenomics GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:... GITHUB_TOKEN: GITHUB_WORKFLOW:Test GITHUB_WORKSPACE:/home/ubuntu/code/short-circuit IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/16.16.0/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] evaluating expression ''
...ubuntu-latest...Release-1... [DEBUG] expression '' evaluated to 'true'
...ubuntu-latest...Release-1... โญ Run Main actions/checkout@v3
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... ๐ณ docker cp src=/home/ubuntu/code/short-circuit/. dst=/home/ubuntu/code/short-circuit
...ubuntu-latest...Release-1... [DEBUG] Writing tarball /tmp/act2831222788 from /home/ubuntu/code/short-circuit/.
...ubuntu-latest...Release-1... [DEBUG] Stripping prefix:/home/ubuntu/code/short-circuit/ src:/home/ubuntu/code/short-circuit/.
...ubuntu-latest...Release-1... [DEBUG] Extracting content from '/tmp/act2831222788' to '/home/ubuntu/code/short-circuit'
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:Test on ubuntu-latest with build type Debug GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:EBI-Metagenomics/short-circuit GITHUB_REPOSITORY_OWNER:EBI-Metagenomics GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:... GITHUB_TOKEN: GITHUB_WORKFLOW:Test GITHUB_WORKSPACE:/home/ubuntu/code/short-circuit IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/16.16.0/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] evaluating expression ''
...ubuntu-latest...Debug-2... [DEBUG] expression '' evaluated to 'true'
...ubuntu-latest...Debug-2... โญ Run Main actions/checkout@v3
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... ๐ณ docker cp src=/home/ubuntu/code/short-circuit/. dst=/home/ubuntu/code/short-circuit
...ubuntu-latest...Debug-2... [DEBUG] Writing tarball /tmp/act3399211776 from /home/ubuntu/code/short-circuit/.
...ubuntu-latest...Debug-2... [DEBUG] Stripping prefix:/home/ubuntu/code/short-circuit/ src:/home/ubuntu/code/short-circuit/.
...ubuntu-latest...Debug-2... [DEBUG] Extracting content from '/tmp/act3399211776' to '/home/ubuntu/code/short-circuit'
...ubuntu-latest...Release-1... close /tmp/act2831222788: file already closed
...ubuntu-latest...Release-1... โ
Success - Main actions/checkout@v3
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
...ubuntu-latest...Release-1... [DEBUG] evaluating expression 'format('{0}', matrix.os)'
...ubuntu-latest...Release-1... [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)'
...ubuntu-latest...Debug-2... close /tmp/act3399211776: file already closed
...ubuntu-latest...Debug-2... โ
Success - Main actions/checkout@v3
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
...ubuntu-latest...Debug-2... [DEBUG] evaluating expression 'format('{0}', matrix.os)'
...ubuntu-latest...Debug-2... [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)'
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:Test on ubuntu-latest with build type Debug GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:EBI-Metagenomics/short-circuit GITHUB_REPOSITORY_OWNER:EBI-Metagenomics GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:... GITHUB_TOKEN: GITHUB_WORKFLOW:Test GITHUB_WORKSPACE:/home/ubuntu/code/short-circuit IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/16.16.0/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] evaluating expression 'runner.os == 'Linux''
...ubuntu-latest...Debug-2... [DEBUG] expression 'runner.os == 'Linux'' evaluated to 'true'
...ubuntu-latest...Debug-2... โญ Run Main Configure CMake
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] expression 'cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
-DUSE_SANITIZER='Address;Undefined' -DENABLE_ALL_WARNINGS=ON
' rewritten to 'format('cmake -B {0}/build -DCMAKE_BUILD_TYPE={1} \
-DUSE_SANITIZER=''Address;Undefined'' -DENABLE_ALL_WARNINGS=ON
', github.workspace, matrix.build_type)'
...ubuntu-latest...Debug-2... [DEBUG] evaluating expression 'format('cmake -B {0}/build -DCMAKE_BUILD_TYPE={1} \
-DUSE_SANITIZER=''Address;Undefined'' -DENABLE_ALL_WARNINGS=ON
', github.workspace, matrix.build_type)'
...ubuntu-latest...Debug-2... [DEBUG] expression 'format('cmake -B {0}/build -DCMAKE_BUILD_TYPE={1} \
-DUSE_SANITIZER=''Address;Undefined'' -DENABLE_ALL_WARNINGS=ON
', github.workspace, matrix.build_type)' evaluated to '%!t(string=cmake -B /home/ubuntu/code/short-circuit/build -DCMAKE_BUILD_TYPE=Debug \
-DUSE_SANITIZER='Address;Undefined' -DENABLE_ALL_WARNINGS=ON
)'
...ubuntu-latest...Debug-2... [DEBUG] Wrote command
cmake -B /home/ubuntu/code/short-circuit/build -DCMAKE_BUILD_TYPE=Debug \
-DUSE_SANITIZER='Address;Undefined' -DENABLE_ALL_WARNINGS=ON
to 'workflow/1'
...ubuntu-latest...Debug-2... [DEBUG] Writing entry to tarball workflow/1 len:139
...ubuntu-latest...Debug-2... [DEBUG] Extracting content to '/var/run/act'
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:Test on ubuntu-latest with build type Release GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:EBI-Metagenomics/short-circuit GITHUB_REPOSITORY_OWNER:EBI-Metagenomics GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:... GITHUB_TOKEN: GITHUB_WORKFLOW:Test GITHUB_WORKSPACE:/home/ubuntu/code/short-circuit IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/16.16.0/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] evaluating expression 'runner.os == 'Linux''
...ubuntu-latest...Release-1... [DEBUG] expression 'runner.os == 'Linux'' evaluated to 'true'
...ubuntu-latest...Release-1... โญ Run Main Configure CMake
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] expression 'cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
-DUSE_SANITIZER='Address;Undefined' -DENABLE_ALL_WARNINGS=ON
' rewritten to 'format('cmake -B {0}/build -DCMAKE_BUILD_TYPE={1} \
-DUSE_SANITIZER=''Address;Undefined'' -DENABLE_ALL_WARNINGS=ON
', github.workspace, matrix.build_type)'
...ubuntu-latest...Release-1... [DEBUG] evaluating expression 'format('cmake -B {0}/build -DCMAKE_BUILD_TYPE={1} \
-DUSE_SANITIZER=''Address;Undefined'' -DENABLE_ALL_WARNINGS=ON
', github.workspace, matrix.build_type)'
...ubuntu-latest...Release-1... [DEBUG] expression 'format('cmake -B {0}/build -DCMAKE_BUILD_TYPE={1} \
-DUSE_SANITIZER=''Address;Undefined'' -DENABLE_ALL_WARNINGS=ON
', github.workspace, matrix.build_type)' evaluated to '%!t(string=cmake -B /home/ubuntu/code/short-circuit/build -DCMAKE_BUILD_TYPE=Release \
-DUSE_SANITIZER='Address;Undefined' -DENABLE_ALL_WARNINGS=ON
)'
...ubuntu-latest...Release-1... [DEBUG] Wrote command
cmake -B /home/ubuntu/code/short-circuit/build -DCMAKE_BUILD_TYPE=Release \
-DUSE_SANITIZER='Address;Undefined' -DENABLE_ALL_WARNINGS=ON
to 'workflow/1'
...ubuntu-latest...Release-1... [DEBUG] Writing entry to tarball workflow/1 len:141
...ubuntu-latest...Release-1... [DEBUG] Extracting content to '/var/run/act'
...ubuntu-latest...Debug-2... ๐ณ docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/1] user= workdir=
...ubuntu-latest...Debug-2... [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/1]'
...ubuntu-latest...Debug-2... [DEBUG] Working directory '/home/ubuntu/code/short-circuit'
...ubuntu-latest...Release-1... ๐ณ docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/1] user= workdir=
...ubuntu-latest...Release-1... [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/1]'
...ubuntu-latest...Release-1... [DEBUG] Working directory '/home/ubuntu/code/short-circuit'
...ubuntu-latest...Debug-2... | /var/run/act/workflow/1: line 2: cmake: command not found
...ubuntu-latest...Debug-2... โ Failure - Main Configure CMake
...ubuntu-latest...Debug-2... exitcode '127': command not found, please refer to https://github.com/nektos/act/issues/107 for more information
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
...ubuntu-latest...Debug-2... [DEBUG] evaluating expression 'format('{0}', matrix.os)'
...ubuntu-latest...Debug-2... [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)'
...ubuntu-latest...Release-1... | /var/run/act/workflow/1: line 2: cmake: command not found
...ubuntu-latest...Release-1... โ Failure - Main Configure CMake
...ubuntu-latest...Release-1... exitcode '127': command not found, please refer to https://github.com/nektos/act/issues/107 for more information
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
...ubuntu-latest...Release-1... [DEBUG] evaluating expression 'format('{0}', matrix.os)'
...ubuntu-latest...Release-1... [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)'
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:2 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:Test on ubuntu-latest with build type Debug GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:EBI-Metagenomics/short-circuit GITHUB_REPOSITORY_OWNER:EBI-Metagenomics GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:... GITHUB_TOKEN: GITHUB_WORKFLOW:Test GITHUB_WORKSPACE:/home/ubuntu/code/short-circuit IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/16.16.0/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] evaluating expression 'runner.os == 'macOS''
...ubuntu-latest...Debug-2... [DEBUG] expression 'runner.os == 'macOS'' evaluated to 'false'
...ubuntu-latest...Debug-2... [DEBUG] Skipping step 'Configure CMake' due to 'runner.os == 'macOS''
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
...ubuntu-latest...Debug-2... [DEBUG] evaluating expression 'format('{0}', matrix.os)'
...ubuntu-latest...Debug-2... [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)'
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:2 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:Test on ubuntu-latest with build type Release GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:EBI-Metagenomics/short-circuit GITHUB_REPOSITORY_OWNER:EBI-Metagenomics GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:... GITHUB_TOKEN: GITHUB_WORKFLOW:Test GITHUB_WORKSPACE:/home/ubuntu/code/short-circuit IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/16.16.0/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] evaluating expression 'runner.os == 'macOS''
...ubuntu-latest...Release-1... [DEBUG] expression 'runner.os == 'macOS'' evaluated to 'false'
...ubuntu-latest...Release-1... [DEBUG] Skipping step 'Configure CMake' due to 'runner.os == 'macOS''
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
...ubuntu-latest...Release-1... [DEBUG] evaluating expression 'format('{0}', matrix.os)'
...ubuntu-latest...Release-1... [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)'
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:Test on ubuntu-latest with build type Debug GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:EBI-Metagenomics/short-circuit GITHUB_REPOSITORY_OWNER:EBI-Metagenomics GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:... GITHUB_TOKEN: GITHUB_WORKFLOW:Test GITHUB_WORKSPACE:/home/ubuntu/code/short-circuit IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/16.16.0/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] evaluating expression ''
...ubuntu-latest...Debug-2... [DEBUG] expression '' evaluated to 'false'
...ubuntu-latest...Debug-2... [DEBUG] Skipping step 'Build' due to ''
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
...ubuntu-latest...Debug-2... [DEBUG] evaluating expression 'format('{0}', matrix.os)'
...ubuntu-latest...Debug-2... [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)'
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:Test on ubuntu-latest with build type Release GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:EBI-Metagenomics/short-circuit GITHUB_REPOSITORY_OWNER:EBI-Metagenomics GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:... GITHUB_TOKEN: GITHUB_WORKFLOW:Test GITHUB_WORKSPACE:/home/ubuntu/code/short-circuit IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/16.16.0/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] evaluating expression ''
...ubuntu-latest...Release-1... [DEBUG] expression '' evaluated to 'false'
...ubuntu-latest...Release-1... [DEBUG] Skipping step 'Build' due to ''
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
...ubuntu-latest...Release-1... [DEBUG] evaluating expression 'format('{0}', matrix.os)'
...ubuntu-latest...Release-1... [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)'
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:4 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:Test on ubuntu-latest with build type Debug GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:EBI-Metagenomics/short-circuit GITHUB_REPOSITORY_OWNER:EBI-Metagenomics GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:... GITHUB_TOKEN: GITHUB_WORKFLOW:Test GITHUB_WORKSPACE:/home/ubuntu/code/short-circuit IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/16.16.0/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] evaluating expression ''
...ubuntu-latest...Debug-2... [DEBUG] expression '' evaluated to 'false'
...ubuntu-latest...Debug-2... [DEBUG] Skipping step 'Test' due to ''
...ubuntu-latest...Debug-2... [DEBUG] skipping post step for 'actions/checkout@v3': no action model available
...ubuntu-latest...Debug-2... ๐ Job failed
...ubuntu-latest...Debug-2... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Debug-2... [DEBUG] HEAD points to '...'
...ubuntu-latest...Debug-2... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Debug-2... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:4 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:Test on ubuntu-latest with build type Release GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:EBI-Metagenomics/short-circuit GITHUB_REPOSITORY_OWNER:EBI-Metagenomics GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:... GITHUB_TOKEN: GITHUB_WORKFLOW:Test GITHUB_WORKSPACE:/home/ubuntu/code/short-circuit IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/16.16.0/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] evaluating expression ''
...ubuntu-latest...Release-1... [DEBUG] expression '' evaluated to 'false'
...ubuntu-latest...Release-1... [DEBUG] Skipping step 'Test' due to ''
...ubuntu-latest...Release-1... [DEBUG] skipping post step for 'actions/checkout@v3': no action model available
...ubuntu-latest...Release-1... ๐ Job failed
...ubuntu-latest...Release-1... [DEBUG] Loading slug from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Loading revision from git directory '/home/ubuntu/code/short-circuit/.git'
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
...ubuntu-latest...Release-1... [DEBUG] HEAD points to '...'
...ubuntu-latest...Release-1... [DEBUG] using github ref: refs/heads/main
...ubuntu-latest...Release-1... [DEBUG] Found revision: ...
Error: Job 'Test on ${{ matrix.os }} with build type ${{ matrix.build_type }}' failed
Additional information
No response
Summary: I think the catthehacker/ubuntu:act-latest image simply does not have cmake installed.
Going by the main README section on default runners being incomplete by design, it instructs to:
In case of any problems please create issue in respective repository (issues with act in this repository, issues with nektos/act-environments-ubuntu:18.04 in nektos/act-environments and issues with any image from user catthehacker in catthehacker/docker_images)
Just my two cents, recreating this issue on missing CMAKE in either of the latter two repositories may bring it to the attention of the people looking at the images specifically ๐
Just my two cents, recreating this issue on missing CMAKE in either of the latter two repositories may bring it to the attention of the people looking at the images specifically ๐
That's correct
Summary: I think the
catthehacker/ubuntu:act-latestimage simply does not have cmake installed.
That's also correct