mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
c81038c963
We can't run this on pull requests because it needs access to the `SONAR_TOKEN` secret. Perhaps in the future we can make it a `pull_request_target` workflow, but then we can't use cmake to initialise the environment, meaning we need to specify the inputs manually.
8 lines
124 B
Bash
Executable File
8 lines
124 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
. ".github/scripts/flags-gcc.sh"
|
|
|
|
cmake --build _build --parallel "$(nproc)" --target install -- -k 0
|