Skip to content

Commit

Permalink
remove unwanted dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
manodnyab committed Apr 5, 2024
1 parent c6d4397 commit dff147e
Showing 1 changed file with 29 additions and 4 deletions.
33 changes: 29 additions & 4 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,18 @@ jobs:
generate_artifact_toolkit:
strategy:
matrix:
supported_versions: [ '2023.3', '2023.2' ]
supported_versions: [ '2023.3', '2023.2', '2024.1' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: remove unwanted dependencies
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- uses: actions/setup-java@v4
with:
distribution: 'corretto'
Expand All @@ -39,12 +45,18 @@ jobs:
generate_artifact_toolkit_standalone:
strategy:
matrix:
supported_versions: [ '2023.3', '2023.2' ]
supported_versions: [ '2023.3', '2023.2', '2024.1' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: remove unwanted dependencies
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- uses: actions/setup-java@v4
with:
distribution: 'corretto'
Expand All @@ -64,12 +76,18 @@ jobs:
generate_artifact_q:
strategy:
matrix:
supported_versions: [ '2023.3', '2023.2' ]
supported_versions: [ '2023.3', '2023.2', '2024.1' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: remove unwanted dependencies
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- uses: actions/setup-java@v4
with:
distribution: 'corretto'
Expand All @@ -87,16 +105,23 @@ jobs:
generate_artifact_core:
strategy:
matrix:
supported_versions: [ '2023.3', '2023.2' ]
supported_versions: [ '2023.3', '2023.2', '2024.1' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: remove unwanted dependencies
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '17'

- name: Generate artifact
run: |
Expand Down

0 comments on commit dff147e

Please sign in to comment.