Skip to content

Commit

Permalink
CI: Update workflows to get them running again.
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosperate committed Dec 11, 2024
1 parent fb6edd9 commit bda655c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
build:
strategy:
matrix:
os: [macos-11, windows-2019]
os: [macos-13, windows-2019]
fail-fast: false
runs-on: ${{ matrix.os }}
name: Build ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -46,18 +46,19 @@ jobs:
make macos
mv dist/*.dmg upload/
- name: Upload Mu installer
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: mu-editor-${{ runner.os }}-${{ github.sha }}
path: upload

build-linux:
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
container:
image: ghcr.io/mu-editor/mu-appimage:2022.05.01
name: Build AppImage
steps:
- uses: actions/checkout@v3
# Higher versions needs a GLIB newer than provided in the docker image
- uses: actions/checkout@v2
- name: Display system info
run: |
uname -a
Expand All @@ -83,7 +84,7 @@ jobs:
tar -cvf Mu_Editor-AppImage-x86_64-${{ github.sha }}.tar *.AppImage
ls -la .
- name: Upload Mu AppImage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: mu-editor-${{ runner.os }}-${{ github.sha }}
path: dist/Mu_Editor-AppImage-x86_64-${{ github.sha }}.tar
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install dependencies to help the code scanner
run: pip install .[dev]

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: python
config-file: ./.github/codeql/codeql-config.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
# macos-13 is x86 and macos-14 is arm64
os: [ubuntu-20.04, ubuntu-latest, macos-11, macos-13, windows-2019, windows-latest]
os: [ubuntu-20.04, ubuntu-latest, macos-13, windows-2019, windows-latest]
python-version: ['3.5', '3.6', '3.7', '3.8']
exclude:
# Python 3.5 and 3.6 not available in the latest Ubuntu runners
Expand Down

0 comments on commit bda655c

Please sign in to comment.