github: Just run ctest manually. Added some emojis
This commit is contained in:
parent
0b9f1cc3b9
commit
ac645c63d3
27
.github/workflows/analysis.yml
vendored
27
.github/workflows/analysis.yml
vendored
@ -10,7 +10,7 @@ on:
|
||||
|
||||
jobs:
|
||||
analyze:
|
||||
name: Analyze
|
||||
name: 🐛 Analyze
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
actions: read
|
||||
@ -22,23 +22,23 @@ jobs:
|
||||
matrix:
|
||||
language: [ 'cpp' ]
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
- name: 🧰 Checkout
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
submodules: recursive
|
||||
|
||||
- name: Initialize CodeQL
|
||||
- name: ✋ Initialize CodeQL
|
||||
uses: github/codeql-action/init@v1
|
||||
with:
|
||||
languages: ${{ matrix.language }}
|
||||
|
||||
- name: Install dependencies
|
||||
- name: ⬇️ Install dependencies
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo bash dist/get_deps_debian.sh
|
||||
|
||||
- name: Build
|
||||
- name: 🛠️ Build
|
||||
run: |
|
||||
mkdir build
|
||||
cd build
|
||||
@ -48,13 +48,10 @@ jobs:
|
||||
..
|
||||
make -j 4 install
|
||||
|
||||
- name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@v1
|
||||
|
||||
- name: Run unit tests
|
||||
uses: HorstBaerbel/action-ctest@1.1
|
||||
with:
|
||||
sourcedir: '.'
|
||||
builddir: 'build'
|
||||
cmakeoptions: '--config Release'
|
||||
ctestoptions: ''
|
||||
- name: 🧪 Perform Unit Tests
|
||||
run: |
|
||||
cd build
|
||||
ctest
|
||||
|
||||
- name: 🗯️ Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@v1
|
18
.github/workflows/build.yml
vendored
18
.github/workflows/build.yml
vendored
@ -25,7 +25,7 @@ jobs:
|
||||
sudo apt update
|
||||
sudo bash dist/get_deps_debian.sh
|
||||
|
||||
- name: ✋ Build
|
||||
- name: 🛠️ Build
|
||||
run: |
|
||||
mkdir build
|
||||
cd build
|
||||
@ -35,7 +35,7 @@ jobs:
|
||||
..
|
||||
make -j 4 install
|
||||
|
||||
- name: ✋ Bundle Flatpak
|
||||
- name: 📦 Bundle Flatpak
|
||||
run: |
|
||||
sudo apt install flatpak flatpak-builder
|
||||
flatpak --user remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
||||
@ -44,14 +44,14 @@ jobs:
|
||||
flatpak-builder --repo=imhex _flatpak dist/net.werwolv.ImHex.yaml
|
||||
flatpak build-bundle imhex imhex.flatpak net.werwolv.ImHex stable
|
||||
|
||||
- name: 📦 Upload ELF
|
||||
- name: ⬆️ Upload ELF
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: Linux ELF
|
||||
path: |
|
||||
build/install/*
|
||||
|
||||
- name: 📦 Upload Flatpak
|
||||
- name: ⬆️ Upload Flatpak
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: Linux Flatpak
|
||||
@ -76,7 +76,7 @@ jobs:
|
||||
run: |
|
||||
bash dist/get_deps_msys2.sh
|
||||
|
||||
- name: ✋ Build
|
||||
- name: 🛠️ Build
|
||||
run: |
|
||||
mkdir build
|
||||
cd build
|
||||
@ -94,14 +94,14 @@ jobs:
|
||||
mingw32-make install
|
||||
cpack
|
||||
|
||||
- name: 📦 Upload Portable ZIP
|
||||
- name: ⬆️ Upload Portable ZIP
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: Windows Portable ZIP
|
||||
path: |
|
||||
build/install/*
|
||||
|
||||
- name: 📦 Upload Windows Installer
|
||||
- name: ⬆️ Upload Windows Installer
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: Windows Installer
|
||||
@ -124,7 +124,7 @@ jobs:
|
||||
run: |
|
||||
brew bundle --no-lock --file dist/Brewfile
|
||||
|
||||
- name: ✋ Build
|
||||
- name: 🛠️ Build
|
||||
run: |
|
||||
mkdir build
|
||||
cd build
|
||||
@ -139,7 +139,7 @@ jobs:
|
||||
..
|
||||
make -j 4 package
|
||||
|
||||
- name: 📦 Upload DMG
|
||||
- name: ⬆️ Upload DMG
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: macOS DMG
|
||||
|
Loading…
Reference in New Issue
Block a user