Skip to content

Commit

Permalink
setup-qemu-action
Browse files Browse the repository at this point in the history
remove custom docker-compose install
  • Loading branch information
brianlball committed Jan 29, 2025
1 parent 34bd86b commit 06d6476
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/openstudio-server-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ jobs:
run: rm -rf /opt/hostedtoolcache
- name: Check out repository
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: setup
Expand Down
10 changes: 5 additions & 5 deletions ci/github-actions/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
echo "The build architecture is ${ImageOS}"

if [ "${ImageOS}" == "ubuntu22" ] && [ "${BUILD_TYPE}" == "docker" ]; then
echo "Installing docker compose"
sudo rm /usr/local/bin/docker-compose
curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
chmod +x docker-compose
sudo mv docker-compose /usr/local/bin
#echo "Installing docker compose"
#sudo rm /usr/local/bin/docker-compose
#curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
#chmod +x docker-compose
#sudo mv docker-compose /usr/local/bin
# install pipeviewer
sudo apt-get update
sudo apt-get install -y pv ruby
Expand Down

0 comments on commit 06d6476

Please sign in to comment.