Skip to content

Commit

Permalink
Merge commit 'b6fa40b8b937d223900ebcc6f9beb5ef8175954a' into 13x
Browse files Browse the repository at this point in the history
  • Loading branch information
muit committed Apr 11, 2022
2 parents ccaeaeb + b6fa40b commit a32a3c9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
name: [Windows, Linux, MacOS]
config: [Debug, Release]
config: [Release]
include:
- name: Windows
os: windows-latest
Expand Down Expand Up @@ -51,4 +51,4 @@ jobs:
- uses: actions/upload-artifact@v2
with:
name: LLVM-${{ matrix.name }}-${{ matrix.config }}
path: install
path: install/${{ matrix.config }}
3 changes: 3 additions & 0 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,13 @@ def main(argv):
parser.add_argument("--targets", default="X86,ARM,AArch64,RISCV", help="List of LLVM targets to include on the build. 'all' will build all targets")
parser.add_argument("--keep-build", action='store_true', help="Should build files be kept after LLVM is installed? Keeping build uses disk space but speedsup rebuilds of LLVM")
args = parser.parse_args()

# Validate parameters
if not os.path.isabs(args.build):
args.build = os.path.join(root, args.build)
if not os.path.isabs(args.install):
args.install = os.path.join(root, args.install)
args.install = os.path.join(args.install, args.config)
args.projects = args.projects.split(',')
args.targets = args.targets.split(',')

Expand Down

0 comments on commit a32a3c9

Please sign in to comment.