Skip to content

Commit

Permalink
fix: 🐛 github aciton os
Browse files Browse the repository at this point in the history
  • Loading branch information
yukihirop committed Dec 23, 2023
1 parent cfd4239 commit 73ef32a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/periodic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-18.04]
os: [ubuntu-latest]
rust: [stable, beta, nightly]

runs-on: ${{ matrix.os }}
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ jobs:

strategy:
matrix:
# os: [ubuntu-18.04, macOS-latest, windows-latest]
os: [ubuntu-18.04, macOS-latest]
os: [ubuntu-latest, macOS-latest]
rust: [stable]

runs-on: ${{ matrix.os }}
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ jobs:
build:
strategy:
matrix:
# os: [ubuntu-18.04, macOS-latest, windows-latest]
os: [ubuntu-18.04, macOS-latest]
os: [ubuntu-latest, macOS-latest]
rust: [stable]

runs-on: ${{ matrix.os }}
Expand All @@ -29,13 +28,13 @@ jobs:
uses: actions/checkout@v1

- name: Setup MUSL
if: matrix.os == 'ubuntu-18.04'
if: matrix.os == 'ubuntu-latest'
run: |
rustup target add x86_64-unknown-linux-musl
sudo apt-get -qq install musl-tools
- name: Build for Linux
if: matrix.os == 'ubuntu-18.04'
if: matrix.os == 'ubuntu-latest'
run: make release_linux

- name: Build for macOS
Expand Down

0 comments on commit 73ef32a

Please sign in to comment.