-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1338 from AntelopeIO/pinned-builds-workflow-in-ci…
…-4.0 [3.2 -> 4.0] Pinned Builds manual dispatch workflow in CI
- Loading branch information
Showing
2 changed files
with
60 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: "Pinned Build" | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
permissions: | ||
packages: read | ||
contents: read | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
Build: | ||
name: Build | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
platform: [ubuntu18, ubuntu20, ubuntu22] | ||
runs-on: ["self-hosted", "enf-x86-beefy-long"] | ||
container: ${{ matrix.platform == 'ubuntu18' && 'ubuntu:bionic' || matrix.platform == 'ubuntu20' && 'ubuntu:focal' || 'ubuntu:jammy' }} | ||
steps: | ||
- name: Conditionally update git repo | ||
if: ${{ matrix.platform == 'ubuntu18' }} | ||
run: | | ||
apt-get update | ||
apt-get install -y software-properties-common | ||
apt-get update | ||
add-apt-repository ppa:git-core/ppa | ||
- name: Update and Install git | ||
run: | | ||
apt-get update | ||
apt-get install -y git | ||
git --version | ||
- name: Clone leap | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
- name: Install dependencies | ||
run: | | ||
# https://github.com/actions/runner/issues/2033 | ||
chown -R $(id -u):$(id -g) $PWD | ||
./scripts/install_deps.sh | ||
- name: Build Pinned Build | ||
env: | ||
LEAP_PINNED_INSTALL_PREFIX: /usr | ||
run: | | ||
./scripts/pinned_build.sh deps build "$(nproc)" | ||
- name: Upload package | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: leap-${{matrix.platform}}-pinned-amd64 | ||
path: build/leap_*.deb | ||
- name: Run Parallel Tests | ||
if: ${{ matrix.platform != 'ubuntu18' }} | ||
run: | | ||
cd build | ||
ctest --output-on-failure -j $(nproc) -LE "(nonparallelizable_tests|long_running_tests)" --timeout 420 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters