Skip to content

Commit 546a1f1

Browse files
committed
Changes to the GitHub Actions workflow files
- Select the correct nCine archive after cloning the artifacts - Use Java 17 when running Gradle for Android on the GitHub runner - Update GitHub checkout action to version 4
1 parent ea55430 commit 546a1f1

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

.github/workflows/android.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: 'Checkout Code'
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v4
2727

2828
- name: 'Unshallow Git Repository for Versioning'
2929
run: |
@@ -56,7 +56,7 @@ jobs:
5656
cd nCine-artifacts
5757
git checkout $NCINE_BRANCH
5858
59-
NCINE_FILE=$(ls -t | head -n 1)
59+
NCINE_FILE=$(ls -t nCine-* | head -n 1)
6060
tar xpzf $NCINE_FILE
6161
mv "${NCINE_FILE/.tar.gz/}" ../nCine
6262
@@ -73,7 +73,7 @@ jobs:
7373
7474
- name: 'Gradle Assemble'
7575
run: |
76-
export JAVA_HOME=$JAVA_HOME_11_X64
76+
export JAVA_HOME=$JAVA_HOME_17_X64
7777
export PROJECT_NAME=${GITHUB_REPOSITORY##*/}
7878
cd ../$PROJECT_NAME-build-${{ matrix.BuildType }}/android
7979
gradle assemble${{ matrix.BuildType }}

.github/workflows/codeql-analysis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: 'Checkout Repository'
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v4
2323

2424
- name: 'Initialize CodeQL'
2525
uses: github/codeql-action/init@v1
@@ -53,7 +53,7 @@ jobs:
5353
cd nCine-artifacts
5454
git checkout $NCINE_BRANCH
5555
56-
NCINE_FILE=$(ls -t | head -n 1)
56+
NCINE_FILE=$(ls -t nCine-* | head -n 1)
5757
tar xpzf $NCINE_FILE
5858
mv "${NCINE_FILE/.tar.gz/}" ../nCine
5959

.github/workflows/emscripten.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: 'Checkout Code'
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v4
2727

2828
- name: 'Install Emscripten SDK'
2929
run: |
@@ -67,7 +67,7 @@ jobs:
6767
cd nCine-artifacts
6868
git checkout $NCINE_BRANCH
6969
70-
NCINE_FILE=$(ls -t | head -n 1)
70+
NCINE_FILE=$(ls -t nCine-* | head -n 1)
7171
tar xpzf $NCINE_FILE
7272
mv nCine-*-Emscripten ../nCine
7373

.github/workflows/linux.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
steps:
4848
- name: 'Checkout Code'
49-
uses: actions/checkout@v2
49+
uses: actions/checkout@v4
5050

5151
- name: 'Unshallow Git Repository for Versioning'
5252
if: matrix.BuildType == 'BinDist'
@@ -80,7 +80,7 @@ jobs:
8080
cd nCine-artifacts
8181
git checkout $NCINE_BRANCH
8282
83-
NCINE_FILE=$(ls -t | head -n 1)
83+
NCINE_FILE=$(ls -t nCine-* | head -n 1)
8484
tar xpzf $NCINE_FILE
8585
mv "${NCINE_FILE/.tar.gz/}" ../nCine
8686

.github/workflows/macos.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: 'Checkout Code'
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v4
2727

2828
- name: 'Unshallow Git Repository for Versioning'
2929
if: matrix.BuildType == 'BinDist'
@@ -57,8 +57,8 @@ jobs:
5757
cd nCine-artifacts
5858
git checkout $NCINE_BRANCH
5959
60-
NCINE_FILE=$(ls -t | head -n 1)
61-
hdiutil convert *.dmg -format UDTO -o nCine
60+
NCINE_FILE=$(ls -t nCine-*.dmg | head -n 1)
61+
hdiutil convert $NCINE_FILE -format UDTO -o nCine
6262
hdiutil attach -readonly nCine.cdr
6363
cp -Rp /Volumes/nCine-*-Darwin/nCine.app ..
6464
hdiutil detach /Volumes/nCine-*-Darwin;

.github/workflows/mingw.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
steps:
4848
- name: 'Checkout Code'
49-
uses: actions/checkout@v2
49+
uses: actions/checkout@v4
5050

5151
- name: 'Update MSYS2'
5252
run: |
@@ -91,7 +91,7 @@ jobs:
9191
$env:NCINE_SOURCE_BRANCH = $env:NCINE_SOURCE_BRANCH -creplace "BRANCH_NAME","$env:branch_name"
9292
$env:NCINE_BRANCH = $env:NCINE_BRANCH -creplace "BRANCH_NAME","$env:ncine_source_branch" -creplace "OS","mingw64" -creplace "COMPILER",$env:CC
9393
git checkout $env:NCINE_BRANCH
94-
$env:NCINE_FILE = Get-ChildItem -Path $(pwd) -Name -File | Select-Object -First 1
94+
$env:NCINE_FILE = Get-ChildItem -Path $(pwd) -Filter nCine-*.tar.gz -Name -File | Select-Object -First 1
9595
7z x $env:NCINE_FILE
9696
$env:NCINE_FILE = $env:NCINE_FILE -creplace ".gz",""
9797
7z x $env:NCINE_FILE -aos

.github/workflows/windows.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: 'Checkout Code'
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v4
2828

2929
- name: 'Unshallow Git Repository for Versioning'
3030
if: matrix.BuildType == 'BinDist'
@@ -63,7 +63,7 @@ jobs:
6363
$env:NCINE_SOURCE_BRANCH = $env:NCINE_SOURCE_BRANCH -creplace "BRANCH_NAME","$env:branch_name"
6464
$env:NCINE_BRANCH = $env:NCINE_BRANCH -creplace "BRANCH_NAME","$env:ncine_source_branch" -creplace "OS","windows" -creplace "COMPILER",$env:vsversion
6565
git checkout $env:NCINE_BRANCH
66-
$env:NCINE_FILE = Get-ChildItem -Path $(pwd) -Filter *.zip -Name -File | Select-Object -First 1
66+
$env:NCINE_FILE = Get-ChildItem -Path $(pwd) -Filter nCine-*.zip -Name -File | Select-Object -First 1
6767
7z x $env:NCINE_FILE
6868
$env:NCINE_DIR = $env:NCINE_FILE -creplace ".zip",""
6969

0 commit comments

Comments
 (0)