setup docker #15
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: test build arm on macos-14 | |
on: | |
push: | |
jobs: | |
test: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install docker | |
run: brew install docker docker-compose | |
- name: Print docker version | |
run: docker --version | |
- name: Test context | |
run: docker context use default | |
- name: test build arm | |
run: cd s3-uploader && ./runtimes/rust_on_provided_al2023/build.sh rust_on_provided_al2023 arm64 | |