Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fail slow #6

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,25 @@ jobs:
build:
name: 'Build Ghidra - ${{ matrix.platform.os }} - ${{ matrix.ghidra.version }}'
strategy:
fail-fast: false
matrix:
platform:
- os: 'ubuntu-latest'
dependency_script: "sudo apt-get update && sudo apt-get install -y bison flex"
- os: 'macos-latest'
dependency_script: "brew install bison flex curl"
# Disable windows because I can't figure this out right now
#- os: 'windows-latest'
# dependency_script: |
# choco install visualstudio2017buildtools
# choco install winflexbison
# ren "C:\ProgramData\chocolatey\bin\win_bison.exe" "bison.exe"
# ren "C:\ProgramData\chocolatey\bin\win_flex.exe" "flex.exe"
- os: 'windows-latest'
dependency_script: |
choco install visualstudio2017buildtools
choco install winflexbison
ren "C:\ProgramData\chocolatey\bin\win_bison.exe" "bison.exe"
ren "C:\ProgramData\chocolatey\bin\win_flex.exe" "flex.exe"
ghidra:
- version: '9.2.4'
ref: 'Ghidra_9.2.4_build'
- version: '9.2.3'
ref: 'Ghidra_9.2.3_build'
- version: '9.2.2'
ref: 'Ghidra_9.2.2_build'
- version: '9.2.1'
Expand Down Expand Up @@ -67,7 +72,7 @@ jobs:
run: git log --oneline -n 15
working-directory: ./ghidra
- name: "Fetch dependencies"
run: "gradle --init-script gradle/support/fetchDependencies.gradle init"
run: "gradle --quiet --init-script gradle/support/fetchDependencies.gradle init"
working-directory: ./ghidra
- name: "Building Ghidra ${{ matrix.ghidra.version }} from ${{ matrix.ghidra.ref }}"
run: "gradle buildGhidra"
Expand Down
48 changes: 48 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -292,3 +292,51 @@ macOS/dmg/9.2.2:
- macOS/9.2.2
variables:
GHIDRA_VERSION: "9.2.2"

# --- 9.2.3 ---

linux/9.2.3:
extends: .build_docker
variables:
TAG: Ghidra_9.2.3_build
GHIDRA_VERSION: "9.2.3"

macOS/9.2.3:
extends: .build_docker
when: manual
variables:
TAG: Ghidra_9.2.3_build
GHIDRA_VERSION: "9.2.3"
tags:
- macOS

macOS/dmg/9.2.3:
extends: .bundler
needs:
- macOS/9.2.3
variables:
GHIDRA_VERSION: "9.2.3"

# --- 9.2.4 ---

linux/9.2.4:
extends: .build_docker
variables:
TAG: Ghidra_9.2.4_build
GHIDRA_VERSION: "9.2.4"

macOS/9.2.4:
extends: .build_docker
when: manual
variables:
TAG: Ghidra_9.2.4_build
GHIDRA_VERSION: "9.2.4"
tags:
- macOS

macOS/dmg/9.2.4:
extends: .bundler
needs:
- macOS/9.2.4
variables:
GHIDRA_VERSION: "9.2.4"