Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
benchmark
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
benchmark
Commits
4cfe99a7
Unverified
Commit
4cfe99a7
authored
May 17, 2021
by
Dominic Hamon
Committed by
GitHub
May 17, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
attempt #382 to get conditional steps working
parent
c39a7a4e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
7 deletions
+5
-7
build-and-test.yml
.github/workflows/build-and-test.yml
+5
-7
No files found.
.github/workflows/build-and-test.yml
View file @
4cfe99a7
...
@@ -30,11 +30,9 @@ jobs:
...
@@ -30,11 +30,9 @@ jobs:
steps
:
steps
:
-
uses
:
actions/checkout@v2
-
uses
:
actions/checkout@v2
-
name
:
install 32-bit
-
if
:
matrix.bits == '32'
if
:
${{ matrix.bits }} == '32'
name
:
install 32-bit
run
:
|
run
:
sudo apt -y install g++-multilib libc6-i386
sudo apt update
sudo apt -y install g++-multilib libc6:i386
-
name
:
create build environment
-
name
:
create build environment
run
:
cmake -E make_directory ${{ runner.workspace }}/_build
run
:
cmake -E make_directory ${{ runner.workspace }}/_build
...
@@ -85,8 +83,8 @@ jobs:
...
@@ -85,8 +83,8 @@ jobs:
sudo apt update
sudo apt update
sudo apt -y install clang-3.6 cmake3 g++-4.8 git
sudo apt -y install clang-3.6 cmake3 g++-4.8 git
-
name
:
install other bits
-
if
:
matrix.compiler == g++-6
if
:
${{ matrix.compiler }} == g++-6
name
:
install other bits
run
:
|
run
:
|
sudo apt -y install software-properties-common
sudo apt -y install software-properties-common
sudo add-apt-repository -y "ppa:ubuntu-toolchain-r/test"
sudo add-apt-repository -y "ppa:ubuntu-toolchain-r/test"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment