Skip to content

Commit

Permalink
Try moving release build to macos host
Browse files Browse the repository at this point in the history
  • Loading branch information
tautschnig committed Aug 23, 2023
1 parent 1aab7a4 commit 3320a01
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
7 changes: 1 addition & 6 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,11 @@ runs:
using: composite
steps:
- name: Remove unnecessary software to free up disk space
if: contains(fromJSON('["ubuntu-18.04","ubuntu-20.04","ubuntu-22.04"]'), inputs.os)
if: contains(fromJSON('["ubuntu-20.04","ubuntu-22.04"]'), inputs.os)
shell: bash
run: |
# inspired by https://github.com/easimon/maximize-build-space/blob/master/action.yml
df -h
echo $PATH
du -hs /usr/share/dotnet
du -hs /usr/local/lib/android
ls -la /usr/local
du -hs /usr/local/.ghcup
sudo rm -r /usr/share/dotnet /usr/local/lib/android /usr/local/.ghcup
df -h
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/kani.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ jobs:
retention-days: 3

releasebundle-ubuntu:
runs-on: ubuntu-20.04
runs-on: macos-latest
container:
image: ubuntu:18.04
steps:
Expand All @@ -197,6 +197,7 @@ jobs:
# action requires Git >=2.18, so use the Git maintainers' PPA.
- name: Install system dependencies
run: |
df -h
apt-get update
apt-get install -y software-properties-common apt-utils
add-apt-repository ppa:git-core/ppa
Expand Down

0 comments on commit 3320a01

Please sign in to comment.