Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update -all.yaml #1237

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/test-all.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "CI - Test Features"
name: "CI - Features"
on:
push:
branches:
Expand All @@ -8,7 +8,7 @@ on:
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: true
continue-on-error: false
strategy:
matrix:
features: [
Expand Down Expand Up @@ -57,11 +57,11 @@ jobs:
run: npm install -g @devcontainers/cli

- name: "Generating tests for '${{ matrix.features }}' against '${{ matrix.baseImage }}'"
run: devcontainer features test --skip-scenarios -f ${{ matrix.features }} -i ${{ matrix.baseImage }} .
run: devcontainer features test scenarios ${{ matrix.features }} -i ${{ matrix.baseImage }} .

test-scenarios:
runs-on: ubuntu-latest
continue-on-error: true
continue-on-error: false
strategy:
matrix:
features: [
Expand Down Expand Up @@ -100,16 +100,16 @@ jobs:
run: npm install -g @devcontainers/cli

- name: "Testing '${{ matrix.features }}' scenarios"
run: devcontainer features test -f ${{ matrix.features }} --skip-autogenerated .
run: devcontainer features ${{ matrix.features }} autogenerated .

test-global:
runs-on: ubuntu-latest
continue-on-error: true
continue-on-error: false
steps:
- uses: actions/checkout@v4

- name: "Install latest devcontainer CLI"
run: npm install -g @devcontainers/cli

- name: "Testing global scenarios"
run: devcontainer features test --global-scenarios-only .
- name: " global scenarios"
run: devcontainer features --global-scenarios-only .