mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 17:50:07 +08:00
19 lines
264 B
Bash
Executable File
19 lines
264 B
Bash
Executable File
#!/bin/bash
|
|
set -eo pipefail
|
|
|
|
gcc -o main main.c
|
|
|
|
dotnet build -p:UseSharedCompilation=false
|
|
|
|
javac Main.java
|
|
|
|
go build main.go
|
|
|
|
# Not all platforms support Swift
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
echo "Compiling Swift"
|
|
swift build
|
|
fi
|
|
|
|
kotlinc main.kt
|