Wait for device-number propagation to IMDS #14
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: AL2023 package build | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build the test container image (AL2023) | |
run: docker build . --file .github/Dockerfile.al2023-test --tag amazon-ec2-net-utils-tests:al2023 | |
- name: Run tests in container (AL2023) | |
run: docker run -v $(readlink -f $PWD):/src -w /src --entrypoint ".github/container-tests-al2023.sh" amazon-ec2-net-utils-tests:al2023 |