Fix test_vscode_integration scenario #12
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CI - Test Features" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test-autogenerated: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
features: | |
- jetify-devbox # Changed from 'devbox' to match the feature ID | |
baseImage: | |
# Note: Alpine excluded due to Nix feature compatibility issues | |
# (install.sh not found - Alpine uses /bin/ash instead of /bin/sh) | |
- debian:latest | |
- ubuntu:latest | |
- mcr.microsoft.com/devcontainers/base:ubuntu | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Install latest devcontainer CLI" | |
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 }} . | |
test-scenarios: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
features: | |
- jetify-devbox # Changed from 'devbox' to match the feature ID | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Install latest devcontainer CLI" | |
run: npm install -g @devcontainers/cli | |
- name: "Generating tests for '${{ matrix.features }}' scenarios" | |
run: devcontainer features test -f ${{ matrix.features }} --skip-autogenerated --skip-duplicated . | |
- name: Upload test logs on failure | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-logs-${{ github.run_id }} | |
path: | | |
**/devbox-setup.log | |
**/test-results.log | |
/tmp/devbox-setup.log | |
test-global: | |
runs-on: ubuntu-latest | |
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: Upload test logs on failure | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-logs-global-${{ github.run_id }} | |
path: | | |
**/devbox-setup.log | |
**/test-results.log | |
/tmp/devbox-setup.log |