feat: update AWS credentials and ECR configuration in workflows #104
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: Run GoTest | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: test-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ${{ matrix.arch == 'amd64' && 'ubuntu-latest' || 'arm64_runner' }} | |
| strategy: | |
| matrix: | |
| arch: [amd64, arm64] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install yq for Dockerfile generation | |
| run: | | |
| ARCH=$(uname -m) | |
| if [ "$ARCH" = "x86_64" ]; then | |
| YQ_ARCH="amd64" | |
| elif [ "$ARCH" = "aarch64" ]; then | |
| YQ_ARCH="arm64" | |
| else | |
| echo "Unsupported architecture: $ARCH" | |
| exit 1 | |
| fi | |
| sudo wget -qO /usr/local/bin/yq https://github.com/mikefarah/yq/releases/latest/download/yq_linux_${YQ_ARCH} | |
| sudo chmod +x /usr/local/bin/yq | |
| - name: Generate Dockerfiles | |
| run: | | |
| cd docker | |
| ./generate.sh test ${{ matrix.arch }} | |
| - name: Build and run tests | |
| run: | | |
| docker build -t test -f docker/${{ matrix.arch }}-test.gen.dockerfile . | |
| docker run --rm test |