Update BGA-simple.stanza: add example without balls missing from landpattern as syntax is somewhat unintuitive #135
Workflow file for this run
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
on: | |
pull_request: | |
workflow_dispatch: | |
name: Test JSL | |
jobs: | |
jsl-make-tests: | |
name: JSL make tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout JSL | |
uses: actions/checkout@v4 | |
- name: Configure JITX's AWS credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
aws-region: ${{ secrets.AWS_REGION }} | |
- name: Login to JITX's Amazon ECR | |
id: login-jitx-ecr | |
uses: aws-actions/amazon-ecr-login@v2 | |
- name: make tests | |
run: | | |
cd .github/ | |
echo -n "${{ secrets.JITX_LICENSE }}" > jitx-client/license | |
docker compose up --exit-code-from jitx-client |