File tree Expand file tree Collapse file tree 2 files changed +15
-8
lines changed
Expand file tree Collapse file tree 2 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 1313 uses : docker/setup-buildx-action@v2
1414
1515 - name : Build Docker image
16- run : docker buildx build --platform linux/arm64 -t myimage:arm64 .
16+ run : docker buildx build --platform linux/arm64 --load - t myimage:arm64 .
1717
1818 - name : Run build in container
1919 run : |
Original file line number Diff line number Diff line change 99 - name : Checkout code
1010 uses : actions/checkout@v3
1111
12- - name : Set up Docker Buildx
13- uses : docker/setup-buildx-action@v2
12+ # - name: Set up Docker Buildx
13+ # uses: docker/setup-buildx-action@v2
1414
15- - name : Build Docker image
16- run : docker buildx build --platform linux/arm64 -t myimage:arm64 .
15+ # - name: Build Docker image
16+ # run: docker buildx build --platform linux/arm64 --load -t myimage:arm64 .
1717
18- - name : Run tests in container
18+ # - name: Run tests in container
19+ # run: |
20+ # docker run --rm -v $(pwd):/RasPike-ART/sdk/workspace/etrobocon2025 myimage:arm64 \
21+ # bash -c "cd /RasPike-ART/sdk/workspace/etrobocon2025 && make test"
22+
23+ # 今のところはコンテナを使わずに直接実行する.
24+ # もしコンテナによるテスト実施が可能であれば,
25+ # これをコメントアウトして,以上を有効化する.
26+ - name : Run tests
1927 run : |
20- docker run --rm -v $(pwd):/RasPike-ART/sdk/workspace/etrobocon2025 myimage:arm64 \
21- bash -c "cd /RasPike-ART/sdk/workspace/etrobocon2025 && make test"
28+ make test
You can’t perform that action at this time.
0 commit comments