-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into kdmccormick/aggregate-always
- Loading branch information
Showing
60 changed files
with
742 additions
and
794 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,3 @@ on: | |
jobs: | ||
add_remove_labels: | ||
uses: openedx/.github/.github/workflows/add-remove-label-on-comment.yml@master | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,74 +12,73 @@ jobs: | |
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ ubuntu-20.04 ] | ||
node-version: [ 18 ] | ||
os: [ubuntu-20.04] | ||
node-version: [18] | ||
python-version: | ||
- '3.11' | ||
- "3.11" | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Fetch master to compare coverage | ||
run: git fetch --depth=1 origin master | ||
|
||
- uses: actions/checkout@v4 | ||
- name: Fetch master to compare coverage | ||
run: git fetch --depth=1 origin master | ||
- name: Setup Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Setup npm | ||
run: npm i -g [email protected] | ||
|
||
- name: Setup npm | ||
run: npm i -g [email protected] | ||
- name: Install Firefox 123.0 | ||
run: | | ||
sudo apt-get purge firefox | ||
wget "https://ftp.mozilla.org/pub/firefox/releases/123.0/linux-x86_64/en-US/firefox-123.0.tar.bz2" | ||
tar -xjf firefox-123.0.tar.bz2 | ||
sudo mv firefox /opt/firefox | ||
sudo ln -s /opt/firefox/firefox /usr/bin/firefox | ||
- name: Install Firefox 123.0 | ||
run: | | ||
sudo apt-get purge firefox | ||
wget "https://ftp.mozilla.org/pub/firefox/releases/123.0/linux-x86_64/en-US/firefox-123.0.tar.bz2" | ||
tar -xjf firefox-123.0.tar.bz2 | ||
sudo mv firefox /opt/firefox | ||
sudo ln -s /opt/firefox/firefox /usr/bin/firefox | ||
- name: Install Required System Packages | ||
run: sudo apt-get update && sudo apt-get install libxmlsec1-dev ubuntu-restricted-extras xvfb | ||
|
||
- name: Install Required System Packages | ||
run: sudo apt-get update && sudo apt-get install libxmlsec1-dev ubuntu-restricted-extras xvfb | ||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Get pip cache dir | ||
id: pip-cache-dir | ||
run: | | ||
echo "::set-output name=dir::$(pip cache dir)" | ||
- name: Get pip cache dir | ||
id: pip-cache-dir | ||
run: | | ||
echo "::set-output name=dir::$(pip cache dir)" | ||
- name: Cache pip dependencies | ||
id: cache-dependencies | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.pip-cache-dir.outputs.dir }} | ||
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/edx/base.txt') }} | ||
restore-keys: ${{ runner.os }}-pip- | ||
|
||
- name: Cache pip dependencies | ||
id: cache-dependencies | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.pip-cache-dir.outputs.dir }} | ||
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/edx/base.txt') }} | ||
restore-keys: ${{ runner.os }}-pip- | ||
- name: Install Required Python Dependencies | ||
run: | | ||
make base-requirements | ||
- name: Install Required Python Dependencies | ||
run: | | ||
make base-requirements | ||
- uses: c-hive/gha-npm-cache@v1 | ||
- name: Run JS Tests | ||
env: | ||
TEST_SUITE: js-unit | ||
SCRIPT_TO_RUN: ./scripts/generic-ci-tests.sh | ||
run: | | ||
npm install -g jest | ||
xvfb-run --auto-servernum ./scripts/all-tests.sh | ||
- uses: c-hive/gha-npm-cache@v1 | ||
- name: Run JS Tests | ||
env: | ||
TEST_SUITE: js-unit | ||
SCRIPT_TO_RUN: ./scripts/generic-ci-tests.sh | ||
run: | | ||
npm install -g jest | ||
xvfb-run --auto-servernum ./scripts/all-tests.sh | ||
- name: Save Job Artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Build-Artifacts | ||
path: | | ||
reports/**/* | ||
test_root/log/*.png | ||
test_root/log/*.log | ||
**/TEST-*.xml | ||
overwrite: true | ||
- name: Save Job Artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Build-Artifacts | ||
path: | | ||
reports/**/* | ||
test_root/log/*.png | ||
test_root/log/*.log | ||
**/TEST-*.xml | ||
overwrite: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ name: Lockfile Version check | |
on: | ||
push: | ||
branches: | ||
- master | ||
- master | ||
pull_request: | ||
|
||
jobs: | ||
|
Oops, something went wrong.