aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJosh Spicer <hello@joshspicer.com>2022-05-25 20:51:28 +0300
committerGitHub <noreply@github.com>2022-05-25 20:51:28 +0300
commit66930fc137900175815b338690144b6eb7134053 (patch)
tree95bfa4bc692af10bf324b544a1d8af435cea739f /.github/workflows
parenta6af6a3d7696bd2567ecb7e891b6596bdd934a97 (diff)
update test build of cli
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/test-manual.yaml8
-rw-r--r--.github/workflows/test.yaml6
2 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/test-manual.yaml b/.github/workflows/test-manual.yaml
index 1c8ed2c..30b0d50 100644
--- a/.github/workflows/test-manual.yaml
+++ b/.github/workflows/test-manual.yaml
@@ -3,13 +3,13 @@ on:
workflow_dispatch:
inputs:
features:
- description: 'Comma-separated list of features to execute tests against'
+ description: 'list of features to execute tests against'
required: true
- default: 'go,dotnet'
+ default: 'go dotnet'
baseImage:
description: 'Base image'
required: true
- default: 'mcr.microsoft.com/vscode/devcontainers/base:focal'
+ default: 'ubuntu:focal'
jobs:
test:
@@ -18,4 +18,4 @@ jobs:
- uses: actions/checkout@v2
- name: " Testing '${{ github.event.inputs.features }}' against '${{ github.event.inputs.baseImage }}'"
- run: npx --yes ./dev-containers-cli-0.1.0.tgz features-test -f ${{ github.event.inputs.features }} -i ${{ github.event.inputs.baseImage }} -d `pwd`
+ run: npx --yes ./dev-containers-cli-0.3.0.tgz features-test -f ${{ github.event.inputs.features }} -i ${{ github.event.inputs.baseImage }} -d `pwd`
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
index 67b473e..66778ac 100644
--- a/.github/workflows/test.yaml
+++ b/.github/workflows/test.yaml
@@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- features: [ "go", "dotnet", "go,dotnet" ]
- baseImage: [ "mcr.microsoft.com/vscode/devcontainers/base:focal" ]
+ features: [ "go", "dotnet", "go dotnet" ]
+ baseImage: [ "ubuntu:focal" ]
steps:
- uses: actions/checkout@v2
- name: " Testing '${{ matrix.features }}' against '${{ matrix.baseImage }}'"
- run: npx --yes ./dev-containers-cli-0.1.0.tgz features-test -f ${{ matrix.features }} -i ${{ matrix.baseImage }} -d `pwd`
+ run: npx --yes ./dev-containers-cli-0.3.0.tgz features test -f ${{ matrix.features }} -i ${{ matrix.baseImage }} -c `pwd`