Skip to content

Commit 9541eae

Browse files
committed
Add autobuild workind-directory test
1 parent b0c570e commit 9541eae

File tree

4 files changed

+119
-0
lines changed

4 files changed

+119
-0
lines changed

.github/workflows/__test-autobuild-working-dir.yml

+68
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: "Autobuild working directory"
2+
description: "Tests working-directory input of autobuild action"
3+
versions: ["latest"]
4+
os: ["ubuntu-latest"]
5+
steps:
6+
- name: Test setup
7+
shell: bash
8+
run: |
9+
# Make sure that Gradle build succeeds in autobuild-dir ...
10+
cp -a ../action/tests/java-repo autobuild-dir
11+
# ... and fails if attempted in the current directory
12+
echo > build.gradle
13+
- uses: ./../action/init
14+
with:
15+
languages: java
16+
tools: ${{ steps.prepare-test.outputs.tools-url }}
17+
- uses: ./../action/autobuild
18+
with:
19+
working-directory: autobuild-dir
20+
- uses: ./../action/analyze
21+
env:
22+
TEST_MODE: true
23+
- name: Check database
24+
shell: bash
25+
run: |
26+
cd "$RUNNER_TEMP/codeql_databases"
27+
if [[ ! -d java ]]; then
28+
ls -l
29+
echo "Did not find a Java database"
30+
exit 1
31+
fi

tests/java-repo/build.gradle

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
plugins {
2+
id 'application'
3+
}
4+
5+
repositories {
6+
mavenCentral()
7+
}
8+
9+
application {
10+
mainClass = 'Main'
11+
}
12+
+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
class Main {
2+
public static void main(String args[]) {
3+
if (true) {
4+
System.out.println("Hello, World!");
5+
}
6+
}
7+
}
8+

0 commit comments

Comments
 (0)