fix: update awscdk examples align with best practice #362
This file contains 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: Wing SDK Tests | |
on: | |
push: | |
paths-ignore: | |
- '**/*.md' | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
repository_dispatch: | |
types: [ feedreader ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: false | |
permissions: | |
id-token: write # This is required for requesting the JWT | |
contents: read # This is required for actions/checkout | |
env: | |
AWS_REGION : "us-east-1" | |
WING_DISABLE_ANALYTICS: 1 | |
DEBUG: "wing:*" | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Get list of directories | |
id: setdirs | |
shell: bash | |
run: | | |
dirs=$(ls -d examples/*/ | sed 's/\/$//' | grep -v "provider-specific" | jq -R -s -c 'split("\n")[:-1]') | |
processed_dirs=$(echo "{ \"directory\": $dirs }" | jq -c '[ .directory[] | {directory: ., name: (split("/") | last)}]') | |
wrapped_dirs=$(echo "{ \"example\": $processed_dirs }" | jq -c .) | |
echo "DIRS=$wrapped_dirs" >> $GITHUB_ENV | |
- name: Pass environment variable to output | |
id: passenv | |
run: | | |
echo "::set-output name=dirs::$DIRS" | |
outputs: | |
examples: ${{ steps.passenv.outputs.dirs }} | |
test: | |
needs: setup | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 6 | |
fail-fast: false | |
matrix: ${{ fromJson(needs.setup.outputs.examples) }} | |
name: ${{ matrix.example.name }} (Simulator) | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Setup Node.js v18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install winglang globally | |
run: | | |
npm install -g winglang@latest | |
wing --version | |
- name: Check for package.json file | |
run: | | |
if [[ -f "${{ matrix.example.directory }}/package.json" ]]; then | |
cd ${{ matrix.example.directory }} | |
npm install | |
fi | |
- name: Check for setup.sh file | |
run: | | |
if [[ -f "${{ matrix.example.directory }}/setup.sh" ]]; then | |
cd ${{ matrix.example.directory }} | |
./setup.sh | |
fi | |
- name: Create ~/.wing/secrets.json | |
run: | | |
mkdir -p ~/.wing | |
echo '{}' > ~/.wing/secrets.json | |
- name: Execute wing test in matrix directory | |
run: | | |
cd ${{ matrix.example.directory }} | |
if [ -f "main.w" ]; then | |
wing test --debug --platform sim main.w | |
elif [ -f "main.ts" ]; then | |
wing test --debug --platform sim main.ts | |
else | |
echo "No main.w or main.ts found" | |
exit 1 | |
fi | |
test-tf-aws: | |
needs: setup | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 6 | |
fail-fast: false | |
matrix: ${{ fromJson(needs.setup.outputs.examples) }} | |
name: ${{ matrix.example.name }} (AWS) | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Check for skip.ci file | |
id: check_skip | |
run: | | |
if [[ -f "${{ matrix.example.directory }}/skip.ci.aws" ]]; then | |
echo "skip.ci file detected. Skipping job." | |
echo "skip=true" >> $GITHUB_ENV | |
else | |
echo "skip=false" >> $GITHUB_ENV | |
fi | |
- name: Setup Node.js v18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install winglang globally | |
if: env.skip == 'false' | |
run: | | |
npm install -g winglang@latest | |
wing --version | |
- name: Check for package.json file | |
run: | | |
if [[ -f "${{ matrix.example.directory }}/package.json" ]]; then | |
cd ${{ matrix.example.directory }} | |
npm install | |
fi | |
- name: Check for setup.sh file | |
run: | | |
if [[ -f "${{ matrix.example.directory }}/setup.sh" ]]; then | |
cd ${{ matrix.example.directory }} | |
./setup.sh | |
fi | |
- name: Configure AWS credentials | |
if: env.skip == 'false' | |
uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
role-to-assume: ${{ secrets.AWS_ROLE_ARN }} | |
role-session-name: gh-actions-winglang-examples | |
aws-region: ${{ env.AWS_REGION }} | |
- name: Execute wing test in matrix directory | |
if: env.skip == 'false' | |
env: | |
TF_LOG: info | |
TF_LOG_PATH: ${{ runner.workspace }}/terraform.log | |
run: | | |
cd ${{ matrix.example.directory }} | |
if [ -f "main.w" ]; then | |
wing test --debug --no-analytics --no-update-check --platform tf-aws main.w | |
elif [ -f "main.ts" ]; then | |
wing test --debug --no-analytics --no-update-check --platform tf-aws main.ts | |
else | |
echo "No main.w or main.ts found" | |
exit 1 | |
fi | |
- name: Output Terraform log | |
if: failure() | |
run: cat ${{ runner.workspace }}/terraform.log |